Is it simply preference or are there specific instances where one is necessary over another? I'm refering to the following variants for initialization
T t(e); // direct initialization
T t = e; // copy initialization
|
Is it simply preference or are there specific instances where one is necessary over another? I'm refering to the following variants for initialization
| |||||||||||||||||||
feedback
|
|
The actual names of the things you describe is not implicit and explicit assignment but :
They are not equivalent, most notably in contexts where a conversion is required, for example when
To paraphrase the standard (8.5/14) :
| |||||||||||
feedback
|
|
Direct initialization like
is necessary when the type in question, here A copy initialization, like
requires an accessible copy constructor, because it's performed as if a temporary object is created on the right hand side of In the other direction, in C++98 the copy initialization syntax is needed in order to use curly braces initializers. For example, direct initialization can't be used to initialize an aggregate. But you can use copy initialization with a curly braces initializer:
So, there are significant differences. I generally prefer copy initialization syntax because of the clarity. But sometimes, as shown above, direct initialization is, unfortunately, necessary. Some people, e.g. C++ textbook author Francis Glassborow, have instead landed on direct initialization as their preferred initialization syntax (I'm not sure why, it's less clear to my eyes, and introduces the "most vexing parse" problem), and for them it's the necessity of copy initialization in some cases, that is unfortunate. Cheers & hth., | ||||
|
feedback
|