Can i call a constructor within a member function ?Is it an example of constructor chaining?
Is constructor chaining valid in the latest C++ version?(like what we have in C#)
Can i call a constructor within a member function ?Is it an example of
Share
1) Yes
2) No, calling a constructor from a function is not constructor chaining.
3) Yes, it is called Delegating Constructors