摘要: 例子 书上的原始代码: #include <iostream> using namespace std; struct Point { int x, y; Point(int x = 0, int y = 0): x(x), y(y) { // x(x), y(y) 等价于 // this->x = 阅读全文
posted @ 2020-04-21 23:07 xkfx 阅读(207) 评论(0) 推荐(0)