InterviewSolution
Saved Bookmarks
| 1. |
What Is The Role Of Copy Constructor In Copying Of Thrown Objects? |
|
Answer» A COPY CONSTRUCTOR with a PUBLIC access SPECIFIER must be applied to the objects which are thrown.With the help of a compiler, the code is generated through which COPYING of thrown objects can be done. The thrown objects must have a copy constructor with the public access specifier. A copy constructor with a public access specifier must be applied to the objects which are thrown.With the help of a compiler, the code is generated through which copying of thrown objects can be done. The thrown objects must have a copy constructor with the public access specifier. |
|