Let A be class with overloaded operator=
If I call a function that has a parameter A by value, Will the overloaded operator= called?
Let A be class with overloaded operator= If I call a function that has
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
No its assignment operator won’t be called.
The copy constructor will be called.
That is the purpose of copy constructor, to create copies of the type by taking in an object of the same type. Pass by value is the typical case where copy constructor is always called.