Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Somewhat related to Why is copy constructor called instead of conversion constructor?

There are two syntaxes for initialization, direct- and copy-initialization:

A a(b);
A a = b;

I want to know the motivation for them having different defined behavior. For copy initialization, an extra copy is involved, and I can't think of any purpose for that copy. Since it's a copy from a temp, it can and probably will be optimized out, so the user can't rely on it happening - ergo the extra copy itself isn't reason enough for the different behavior. So... why?

share|improve this question
8  
@Als: maybe, I don't know the purpose of that tag. The idea of the question isn't to split fine hairs about what the spec actually says, though, and that's what I think of as language-lawyering. I'd prefer to tag it language-design, if that's permitted. – Steve Jessop Jun 27 '12 at 9:46
5  
+1. Good question. Even I want to know the reason as to why they're designed to behave differently. – Nawaz Jun 27 '12 at 9:50
4  
@moooeeeep not really. I know there's a difference, I'm asking why. – Luchian Grigore Jun 27 '12 at 10:02
6  
@Luchian: the top answer over on that question goes into detail about when it matters which one you use, though. It says in effect that direct initialization can perform more conversions than copy initialization, because direct initialization can convert b to any type for which A has a constructor, whereas copy initialization must attempt to convert b specifically to A or a derived class of A. So, a plausible motivation for the difference is that copy initialization exists in order to suppress any explicit non-copy constructors of A. – Steve Jessop Jun 27 '12 at 10:17
4  
Oh, and also to suppress conversion chains from b to A that involved two user-defined conversions, the second of those being a constructor of A. What the answer over there doesn't address, is which of the differences was the actual motivation. – Steve Jessop Jun 27 '12 at 10:21
show 4 more comments

3 Answers

Only a speculation, but I am afraid it will be hard to be more certain without Bjarne Stroustrup confirming how it really was:

It was designed this way because it was assumed such behaviour will be expected by the programmer, that he will expect the copy to be done when = sign is used, and not done with the direct initializer syntax.

I think the possible copy elision was only added in later versions of the standard, but I am not sure - this is something somebody may be able to tell certainly by checking the standard history.

share|improve this answer
Ok, but why would the programmer want the extra copy? It seems like it doesn't serve any purpose. – Luchian Grigore Jul 1 '12 at 16:34
I agree. It does not make any sense to me, however this is the only possible explanation I can imagine. I think only those who designed the language might be able to tell their reasons. – Suma Jul 1 '12 at 19:31
Yup. Or someone who actually wanted a copy and can tell use the reasons. – Luchian Grigore Jul 1 '12 at 19:48

Since it's a copy from a temp, it can and probably will be optimized out

The keyword here is probably. The standard allows, but does not require, a compiler to optimize the copy away. If some compilers allowed this code (optimized), but others rejected it (non-optimized), this would be very inconsistent.

So the standard prescribes a consistent way of handling this - everyone must check that the copy constructor is accessible, whether they then use it or not.

The idea is that all compilers should either accept the code or reject it. Otherwise it will be non-portable.


Another example, consider

A a;
B b;

A a1 = a;
A a2 = b;

It would be equally inconsistent to allow a2 but forbid a1 when As copy constructor is private.


We can also see from the Standard text that the two methods of initializing a class object were intended to be different (8.5/16):

If the initialization is direct-initialization, or if it is copy-initialization where the cv-unqualified version of the source type is the same class as, or a derived class of, the class of the destination, constructors are considered. The applicable constructors are enumerated (13.3.1.3), and the best one is chosen through overload resolution (13.3). The constructor so selected is called to initialize the object, with the initializer expression or expression-list as its argument(s). If no constructor applies, or the overload resolution is ambiguous, the initialization is ill-formed.

Otherwise (i.e., for the remaining copy-initialization cases), user-defined conversion sequences that can convert from the source type to the destination type or (when a conversion function is used) to a derived class thereof are enumerated as described in 13.3.1.4, and the best one is chosen through overload resolution (13.3). If the conversion cannot be done or is ambiguous, the initialization is ill-formed. The function selected is called with the initializer expression as its argument; if the function is a constructor, the call initializes a temporary of the cv-unqualified version of the destination type. The temporary is a prvalue. The result of the call (which is the temporary for the constructor case) is then used to direct-initialize, according to the rules above, the object that is the destination of the copy-initialization. In certain cases, an implementation is permitted to eliminate the copying inherent in this direct-initialization by constructing the intermediate result directly into the object being initialized; see 12.2, 12.8.

A difference is that the direct-initialization uses the constructors of the constructed class directly. With copy-initialization, other conversion functions are considered and these may produce a temporary that has to be copied.

share|improve this answer
3  
True, but doesn't really address the question... – Luchian Grigore Jun 27 '12 at 10:00
4  
This answers the question, "why does the copy constructor need to be accessible even when copy elision is applied?". It does not answer the question, "why is the copy-initialization syntax defined to do a copy that can be elided?" – Steve Jessop Jun 27 '12 at 10:12
1  
True, it addresses the point of "ergo the extra copy itself isn't reason enough for the different behavior". The potential extra copy is the reason. Why it was decided to have the copy there eludes me. – Bo Persson Jun 27 '12 at 10:22
2  
@RedX - No, the compiler is explicitly allowed to elide the copying even if there would be side effects. – Bo Persson Jun 27 '12 at 10:50
1  
That's exactly the question - WHY have a copy? – Luchian Grigore Jun 27 '12 at 12:29
show 4 more comments

Take the following example:

struct X
{
    X(int);
    X(const X&);
};

int foo(X x){/*Do stuff*/ return 1; }
X x(1);
foo(x);

In the compilers I tested, the argument to foo was always copied even with full optimization turned on. From this, we can gather that copies will not/must not be eliminated in all situations.

Now lets think from a language design perspective, imagine all the scenarios you would have to think about if you wanted to make rules for when a copy is needed and when it isn't. This would be very difficult. Also, even if you were able to come up with rules, they would be very complex and almost impossible for people to comprehend. However, at the same time, if you forced copies everywhere, that would be very inefficient. This is why the rules are the way they are, you make the rules comprehensible for people to understand while still not forcing copies to be made if they can be avoided.

I have to admit now, this answer is very similar to Suma's answer. The idea is that you can expect the behavior with the current rules, and anything else would be too hard for people to follow.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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