摘要: 1 class Point 2 { 3 int x; 4 int y; 5 public: 6 //Point(void) { } 7 Point(int _x=0,int _y=0) 8 { 9 x = _x; 10 y = _y; 11 } 12 13 ... 阅读全文
posted @ 2018-08-25 08:49 寄生! 阅读(876) 评论(0) 推荐(0) 编辑