Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Possible Duplicate:
How are C array members handled in copy control functions?

If I don't override the operator = of a class, it will use default memberwise assignment.

But what does it mean?

struct A {
    int array[100];
};
A a;
A b=a;

No error. How does b copes a'sarray? Normally array_b = array_a is invalid.

Another exampe:

struct A {
    vector<int> vec;
};
A a;
A b=a;

How does b copes a'svec? Through assignment(vec_b = vec_a), constructor(vec_b = vector<int>(vec_a)) or other mystery way?

share|improve this question
possible duplicate of stackoverflow.com/questions/4164279/… – Invictus May 5 '12 at 12:14

marked as duplicate by FredOverflow, sehe, Cody Gray, Flexo, Alok Save May 5 '12 at 12:12

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

2 Answers

up vote 8 down vote accepted
A b=a;

Is not assignment, it is called as Copy Initialization.

The implicitly generated copy constructor is called to create an new object b from the existing object a.
The implicitly generated copy constructor makes a copy of the array member.

For completeness I am going to add here the standard citation from the marked duplicate.

C++03 Standard: 12.8 (Copying class objects)

Each subobject is copied in the manner appropriate to its type:

  • if the subobject is of class type, the copy constructor for the class is used;
  • if the subobject is an array, each element is copied, in the manner appropriate to the element type;
  • if the subobject is of scalar type, the built-in assignment operator is used.
share|improve this answer
Generally, yes. What is a shallow copy of an array though? – Konrad Rudolph May 5 '12 at 11:55
@KonradRudolph: In this case an memcpy.The shallow copy would apply to pointers and that is the reason for Rule of Three. – Alok Save May 5 '12 at 11:57
Doesn't sound so shallow. – Chris A. May 5 '12 at 11:59
@Als Word. And this also can be applied to the OP's "Normally array_b = array_a is invalid." where you can't use an assignment like that, but you can construct new arrays that way (as long as the rhs is an array literal). – Mr Lister May 5 '12 at 11:59
@ChrisA. It is if the array elements are pointers. – Mr Lister May 5 '12 at 12:00
show 10 more comments

If the members have copy constructors, they get invoked. If not, the default copy constructor does the equivalent of memcpy. See Memberwise Assignment and Initialization.

In the case of non-pointer arrays, each element is copied.

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.