Why is there no std::make_unique function template in the standard C++11 library? I find

std::unique_ptr<SomeUserDefinedType> p(new SomeUserDefinedType(1, 2, 3));

a bit verbose. Wouldn't the following be much nicer?

auto p = std::make_unique<SomeUserDefinedType>(1, 2, 3);

This hides the new nicely and only mentions the type once.

Anyway, here is my attempt at an implementation of make_unique:

template<typename T, typename... Args>
std::unique_ptr<T> make_unique(Args&&... args)
{
    return std::unique_ptr<T>(new T(std::forward<Args>(args)...));
}

It took me quite a while to get the std::forward stuff to compile, but I'm not sure if it's correct. Is it? What exactly does std::forward<Args>(args)... mean? What does the compiler make of that?

link|improve this question

1  
Pretty sure we've had this discussion before... also note that unique_ptr takes a second template parameter which you should somehow allow for - that's different from shared_ptr. – Kerrek SB Aug 12 '11 at 9:49
Perhaps it's because it's rather easy to write yourself? While a make_unique() simply wraps a new statement, it's not like make_shared() which is actually not trivial to implement correctly (it allocates the space for the reference count and the object at the same time). But good question though. – In silico Aug 12 '11 at 9:52
2  
@Kerrek: I don't think it would make sense to parameterize make_unique with a custom deleter, because obviously it allocates via plain old new and hence must use plain old delete :) – FredOverflow Aug 12 '11 at 10:24
1  
@Fred: That's true. So, the proposed make_unique would be limited to new allocation... well, it's fine if you want to write it, but I can see why something like that isn't part of the standard. – Kerrek SB Aug 12 '11 at 10:31
2  
Actually, I like to use a make_unique template since the constructor of std::unique_ptr is explicit, and thus it is verbose to return unique_ptr from a function. Also, I'd rather use auto p = make_unique<foo>(bar, baz) than std::unique_ptr<foo> p(new foo(bar, baz)). – Alexandre C. Aug 12 '11 at 10:38
show 1 more comment
feedback

4 Answers

up vote 18 down vote accepted

Herb Sutter, chair of the C++ standardization committee, writes on his blog:

"That C++11 doesn’t include make_unique is partly an oversight, and it will almost certainly be added in the future."

He also gives an implementation that is identical with the one given by the OP.

link|improve this answer
2  
A make_unique function template does not itself guarantee exception safe calls. It relies on convention, that the caller uses it. In contrast, strict static type checking (which is the main diff between C++ and C) is built on the idea of enforcing safety, via types. And for that, make_unique can simply be a class instead of function. For example, see my blog article from May 2010. It's also linked to from the discussion on Herb's blog. – Cheers and hth. - Alf May 12 at 13:42
feedback

While nothing stops you from writing your own helper, I believe that the main reason for providing make_shared<T> in the library is that it actually creates a different internal type of shared pointer than shared_ptr<T>(new T), which is differently allocated, and there's no way to achieve this without the dedicated helper.

Your make_unique wrapper on the other hand is mere syntactic sugar around a new expression, so while it might look pleasing to the eye, it doesn't bring anything new to the table. Correction: this isn't in fact true: Having a function call to wrap the new expression provides exception safety, for example in the case where you call a function void f(std::unique_ptr<A> &&, std::unique_ptr<B> &&). Having two raw news that are unsequenced with respect to one another means that if one new expression fails with an exception, the other may leak resources. As for why there's no make_unique in the standard: It was just forgotten. (This happens occasionally. There's also no global std::cbegin in the standard even though there should be one.)

Also note that unique_ptr takes a second template parameter which you should somehow allow for; this is different from shared_ptr, which uses type erasure to store custom deleters without making them part of the type.

link|improve this answer
What exactly do you mean by "different internal type"? – FredOverflow Aug 12 '11 at 10:04
@FredOverflow: The shared pointer is a relatively complicated class; internally it keeps a polymorphic reference control block, but there are several different kinds of control blocks. shared_ptr<T>(new T) uses one of them, make_shared<T>() uses a different one. Allowing that is a Good Thing, and the make-shared version is in some sense the lightest-weight shared pointer you can get. – Kerrek SB Aug 12 '11 at 10:11
7  
@FredOverflow: shared_ptr allocates a block of dynamic memory to keep up the count and the "disposer" action when you create a shared_ptr. If you pass the pointer explicitly, it needs creating a "new" block, if you use make_shared it can bundle your object and the satellite data in a single block of memory (one new) resulting in faster allocation/deallocation, less fragmentation, and (normally) better cache behavior. – Matthieu M. Aug 12 '11 at 10:17
1  
I think I need to re-watch shared_ptr and friends... – FredOverflow Aug 12 '11 at 10:18
1  
-1 "Your make_unique wrapper on the other hand is mere syntactic sugar around a new expression, so while it might look pleasing to the eye, it doesn't bring anything new to the table." is wrong. It brings the possibility of exception safe function invocation. It does not bring a guarantee, however; for that, it would need to be class so that the formal arguments could be declared of that class (Herb described that as the difference between opt-in and opt-out). – Cheers and hth. - Alf May 12 at 13:16
show 4 more comments
feedback

std::make_shared isn't just shorthand for std::shared_ptr<Type> ptr(new Type(...));. It does something that you cannot do without it.

In order to do its job, std::shared_ptr must allocate a tracking block in addition to holding the storage for the actual pointer. However, because std::make_shared allocates the actual object, it is possible that std::make_shared allocates both the object and the tracking block in the same block of memory.

So while std::shared_ptr<Type> ptr = new Type(...); would be two memory allocations (one for the new, one in the std::shared_ptr tracking block), std::make_shared<Type>(...) would allocate one block of memory.

That is important for many potential users of std::shared_ptr. The only thing a std::make_unique would do is be slightly more convenient. Nothing more than that.

link|improve this answer
2  
It's not required. Hinted, but not required. – DeadMG Aug 12 '11 at 9:59
@DeadMG: Fixed. Thanks. – Nicol Bolas Aug 12 '11 at 17:29
feedback

In C++0X ... is used (in template code) for "pack expansion" too.

The requirement is that you use it as a suffix of an expression containing an unexpanded pack of parameters, and it will simply apply the expression to each of the elements of the pack.

For example, building on your example:

std::forward<Args>(args)... -> std::forward<int>(1), std::forward<int>(2),
                                                     std::forward<int>(3)

std::forward<Args>(args...) -> std::forward<int, int, int>(1,2,3)

The latter being incorrect I think.

Also, pack of arguments may not be passed to a function unexpanded. I am unsure about a pack of template parameters.

link|improve this answer
1  
Nice to see this spelt out. Why not include the variadic template parameter, too? – Kerrek SB Aug 12 '11 at 11:55
@Kerrek: because I am not so sure about its strange syntax, and I don't know if many people have played with. So I'll keep to what I know. It may warrant a c++ FAQ entry, if someone was motivated and knowledgeable enough, for the variadic syntax is quite complete. – Matthieu M. Aug 12 '11 at 13:52
The syntax is std::forward<Args>(args)..., which expands to forward<T1>(x1), forward<T2>(x2), .... – Kerrek SB Aug 12 '11 at 15:11
@Kerrek: Oh, I thought you were talking about pure type manipulations. I don't see the need to put the type here, the T1... would come from nowhere. – Matthieu M. Aug 12 '11 at 16:23
:I think forward actually always requires a template parameter, doesn't it? – Kerrek SB Aug 12 '11 at 16:39
show 6 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.