What is the difference between these two equivalence models? | Sololearn: Learn to code for FREE!
Nouvelle formation ! Tous les codeurs devraient apprendre l'IA générative !
Essayez une leçon gratuite
0

What is the difference between these two equivalence models?

Hi.I'm beginner on programming.Suppose we have defined this class. class ClassA { //data }; In this I defined copy constructor. What's the difference between these two: 1- classA c1; classA c2; c1 = c2; 2- classA c1; classA c2 = c1; Why copy constructor isn't called in the first but is called in the second????

9th Apr 2019, 6:57 PM
Sobhan Safdariyan
Sobhan Safdariyan - avatar
0 Réponse