摘要: #include <iostream> using namespace std; class base1 { private: int a, b; public: base1(int i) : b(i + 1), a(b) {} base1():b(0), a(b) {} int get_a() { 阅读全文
posted @ 2024-02-18 14:17 萧海~ 阅读(8) 评论(0) 推荐(0) 编辑