If I have a class with an array as a member:
class A
{
Object array[SIZE];
};
And I copy an instance of it:
A a;
A b = a;
A c;
c = a;
will array
be memcpy-ed byte-by-byte or Object::operator=
copied element-by-element?
If I have a class with an array as a member:
class A
{
Object array[SIZE];
};
And I copy an instance of it:
A a;
A b = a;
A c;
c = a;
will array
be memcpy-ed byte-by-byte or Object::operator=
copied element-by-element?
Copyright © 2021 Jogjafile Inc.
Arrays in C++ are well behaved for all first class objects, including user defined types (no matter whether they are POD/non-trivially constructible).
Output (see also http://liveworkspace.org/code/40380f1617699ae6967f0107bf080026):