摘要: 参考:https://www.cnblogs.com/lustar/p/10717502.html class A { public: A(int i) :a(i){} int getValue(){ return a; } private: int a; }; int main() { A* p1 阅读全文
posted @ 2021-03-10 15:23 kouei_kou 阅读(56) 评论(0) 推荐(0) 编辑