1. 首页
  2. 课程学习
  3. C++/C
  4. 重载函数的运行

重载函数的运行

上传者: 2019-02-18 23:30:29上传 TXT文件 2.32KB 热度 29次
. 定义Point类,有坐标x,y两个成员变量;对Point类重载“++”、“--”运算符,实现坐标值的改变。 #include using namespace std; class point { public: point(){}; point(int a,int b) { x=a; y=b; } point operator++(); point operator++(int); point operator--(); point operator--(int); void showpoint() const; private:
用户评论