2017年11月14日

摘要: 一个简单的point坐标类 class Point {public: Point():xval(0),yval(0){} Point(int x,int y):xval(x),yval(y){} int x()const { return xval; } int y()const { return 阅读全文
posted @ 2017-11-14 09:22 itdef 阅读(252) 评论(0) 推荐(0)

导航