Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


What is the difference between a copy constructor and an
overloaded assignment operator?

Answers were Sorted based on User's Feedback



What is the difference between a copy constructor and an overloaded assignment operator?..

Answer / guest

A copy constructor constructs a new object by using the
content of the argument object. An overloaded assignment
operator assigns the contents of an existing object to
another existing object of the same class.

Is This Answer Correct ?    44 Yes 12 No

What is the difference between a copy constructor and an overloaded assignment operator?..

Answer / siddharth wighe

Second main difference:
A copy constructor has no return type, whereas an
overloaded assignment operator has one.

Third difference (trivial):
Name of the copy constructor is the same as that of the
class in which it is defined

----------------------
http://swighe.nipl.net

Is This Answer Correct ?    32 Yes 7 No

What is the difference between a copy constructor and an overloaded assignment operator?..

Answer / neelkamal yadav

A copy constructor constructs a new object by using the content of the argument object. An overloaded assignment operator assigns the contents of an existing object to another existing object of the same class.

First, the applicant must know that a copy constructor is one that has only one argument of the same type as the constructor. The compiler invokes a copy constructor wherever it needs to make a copy of the object, for example to pass an argument by value. If you do not provide a copy constructor, the compiler creates a member- by-member copy constructor for you.

You can write overloaded assignment operators that take arguments of other classes, but that behavior is usually implemented with implicit conversion constructors. If you do not provide an overloaded assignment operator for the class, the compiler creates a default member- by-member assignment operator.

This discussion is a good place to get into why classes need copy constructors and overloaded assignment operators. If the applicant discusses these with respect to data member pointers that point to dynamically allocated resources, the applicant probably has a good grasp of the problem.

Is This Answer Correct ?    0 Yes 0 No

What is the difference between a copy constructor and an overloaded assignment operator?..

Answer / vsinghal

In case of copy constructor when the object goes out of
scope its destructor will be called while in case of
assignment operator no destructor will be called.

Is This Answer Correct ?    12 Yes 14 No

Post New Answer

More C++ General Interview Questions

What are vectors used for in c++?

0 Answers  


What is data binding in c++?

0 Answers  


Do inline functions improve performance?

0 Answers  


what are the types of Member Functions?

0 Answers  


Is it possible for a member function to delete the pointer, named this?

0 Answers  


what is the use of Namespace in c++.

3 Answers  


What are c++ manipulators?

0 Answers  


What is tellg () in c++?

0 Answers  


What is the use of default constructor?

0 Answers  


What is the advantage of an external iterator.

0 Answers  


What are 2 ways of exporting a function from a dll?

0 Answers  


What are c++ files?

0 Answers  


Categories