50 ! конструктор копирования нужно исправить ошибки в коде #include #include using namespace std; class my { public: int *data; my(int size) { this-> size = size; this-> data = new int[size]; for (int i = 0; i < size; i++) { data[i] = i; } cout < < "здесь вызвался конструктор" < < this < < endl; }; } my(const my & other) { this-> size = other.size; this-> data = new int[other.size]; for (int i = 0; i < other.size; i++) { this-> data[i] = other.data[i]; } cout < < "вызвался конструктор копирования" < < this < < endl; } ~my() { cout < < "вызвался деструктор" < < this < < endl; delete[] data; }; private: int size; }; int main() { setlocale(lc_all, "ru"); my a(5); my b(a); }
=======================================