• 2021-04-14
    中国大学MOOC: 有以下类定义class Point {public: Point(int x = 0, int y = 0) { _.x = x; _.y = y; } void Move(int xOff, int yOff) { _x += xOff; _.y += yOff; } void Print() const { cout << ( << _x << , << _y << ) << endl; }private: int _x, _y;};下列语句中会发生编译错误的是