T
Taras_96
Hi,
In another thread, http://tiny.cc/9sVqr, it was written that:
"By definition, the form
TypeA objA = objB;
is a shorthand for
TypeA objA((TypeA(objB)));"
Why isn't the above short hand for:
TypeA objA(objB); ?
What if I had actually written
TypeA objA(objB);
in the source?
Taras
In another thread, http://tiny.cc/9sVqr, it was written that:
"By definition, the form
TypeA objA = objB;
is a shorthand for
TypeA objA((TypeA(objB)));"
Why isn't the above short hand for:
TypeA objA(objB); ?
What if I had actually written
TypeA objA(objB);
in the source?
Taras