복사생성자 July 9, 2022 최대 1 분 소요 ```c++ class MyArray{ public : int size; int* data; MyArray(int size); MyArray(const MyArray& other); ~MyArray(); };