copy constructor | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

copy constructor

I have just learnt about copy constructor today. I found a syntax of it on internet classname (const classname &obj) { // body of constructor } Why do we use const classname &obj instead of classname &obj ?

2nd Jan 2018, 4:12 AM
thong nguyen
thong nguyen - avatar
1 Answer
+ 10
It is fine to omit the const modifier if you do not plan to pass temporary objects into the copy constructor. A constant reference parameter allows you to pass temporary objects to a function/method. http://www.cplusplus.com/forum/general/44221/ This also makes sure that you don't accidentally modify your class object which is passed into the copy constructor. As for why class objects are encouraged to be passed by reference: https://stackoverflow.com/questions/18347109/c-pass-by-value-with-non-primitive-types
2nd Jan 2018, 4:38 AM
Hatsy Rei
Hatsy Rei - avatar