Is it possible to write a smart pointer which allocates the object itself in its constructor - instead of the developer having to call new? In other words, instead of writing:
std::unique_ptr<myClass> my_ptr(new myClass(arg1, arg2))
...one could write:
std::smarter_ptr<myClass> my_ptr(arg1, arg2)
Is the language syntax capable of expressing this? Would this be desirable? Hideous? I'm thinking in particular of protecting against this mistake (which I've made myself, of course):
myFunction(std::unique_ptr<myClass>(new myClass()), std::unique_ptr<myClass>(new myClass()))
...which risks leaking whichever object is allocated first if the second allocation happens and throws before the first object is safely ensconced in its smart pointer. But would a smarter pointer actually make this safe?
newexpressions before using either result to initialise a smart pointer; in which case you will get a leak if the second one throws. – Mike Seymour Jul 27 '12 at 13:47tmp1 = new myClass(); tmp2 = new myClass(); arg1 = std::unique_ptr(tmp1); arg2 = std::unique_ptr(tmp2); myFunction(arg1, arg2);is a perfectly legal execution order. – Ben Voigt Jul 27 '12 at 13:47