class Point {
public:
Point(int x, int y) : { x = new int(x); y = new int(y) }
...
...
Point& operator=(const Point& other) {
if(this!=&other){
delete x;
delete y;
x = new int(*other.x);
y = new int(*other.y);
}
return *this;
}
private:
const int* x;
const int* y;
}
このoperator=の実装は、このxとyがすでに初期化されている場合でも機能しますか?constポインターを削除すると、再割り当てできますか?