Loading

摘要: 一、返回值问题 1 #include <iostream> 2 3 using namespace std; 4 5 class X 6 { 7 public: 8 int a = 3; 9 X set1(int b) 10 { 11 a = b; 12 return *this; 13 } 14 阅读全文
posted @ 2018-07-17 18:15 拾月凄辰 阅读(971) 评论(0) 推荐(0) 编辑