class A {};
class B { public: B (A a) {} };
A a;
B b=a;
Technically speaking, is a copy constructor being applied here on the creation of b ?
Technically speaking, is a copy constructor being applied here on the creation of |
|||||||||
|
Yes...but probably not how you think.
EDIT: One learns something new every day. Apparently even more-technically-speaking, as @CharlesBailey pointed out...if you use the It's a little hard to study the phenomenon, but Charles points out that gcc has a Is there a difference in C++ between copy initialization and direct initialization? |
|||||||||||||||||||
|
|
Yes, in theory. This is copy-initialiation. First a temporary Compilers are allowed to, and frequently do, elide the temporary and the copy construction, though, and construct |
|||
|
|
No, a copy constructor takes a reference to an object of the same kind. C++03 12.1 Constructors
EDIT: OK, to be fair (and after reading the other answers), a copy constructor is being called, but it's EDIT2: To be fairer, it's not necessary for it to be called at all:
|
|||||||||||||
|
|
No. It's not a Copy Constructor. If you creates an object by initializing it with an object of the same class, that is copy constructor.
The above code is copy Constructor. |
|||
|
|