When copy constructor can be used?

Answers were Sorted based on User's Feedback



When copy constructor can be used?..

Answer / jack

while compiler encounters following situation it uses the CC
1.when assigning one object to another object of same class
type

2.When an object is passed to the called function.....

3.when a function returns the object type and assigns it to
the another object..........

Is This Answer Correct ?    18 Yes 4 No

When copy constructor can be used?..

Answer / sachin magdum

1. "assigning" - don't use this word, it should be
initializing an object using another object of same type
2. When the object is passed to function - "by value"
3. when a function returns the object type - "by value"
here doesn't matter if you are assigning that returned
value to to another object or not.

Is This Answer Correct ?    9 Yes 4 No

When copy constructor can be used?..

Answer / vikas sood

hi fellows..try this code
class A {
public:
A() { }
A(const A& rhs)
{
cout<<"inside copy constructor..";
}
};

int main()
{
std::vector<A> aVec(10);
}

The answer to this is another reason a copy constructor
will be called.

Is This Answer Correct ?    2 Yes 1 No

When copy constructor can be used?..

Answer / priya

Whenever u want to copy the members of one object to another
object of the same class in a C++ program.

Is This Answer Correct ?    3 Yes 3 No

Post New Answer

More C++ General Interview Questions

What are the effects after calling the delete this operator ?

0 Answers  


What is vector processing?

0 Answers  


Mention the purpose of istream class?

0 Answers  


They will ask u question about single linked list?. Write Code for to insert delete node.

2 Answers   Persistent,


What language does google use?

0 Answers  






What is a storage class?

0 Answers  


Explain all the C++ concepts using examples.

0 Answers   InterGraph,


Which operator cannot overload?

0 Answers  


What are the uses of pointers?

0 Answers  


What is the difference between public and private data members?

0 Answers  


What is static function and static class?

4 Answers   HCL,


What is the use of namespace std in C++?

0 Answers   Hexaware,


Categories