摘要: #include <iostream> using namespace std; int g_base_num = 1; class Teacher { public: int id; int* studentIds{nullptr}; int count; public: // 构造函数 Teac 阅读全文
posted @ 2021-10-29 21:20 邱明成 阅读(396) 评论(0) 推荐(0) 编辑
摘要: #include <iostream> #include <string> using namespace std; class Array { public: Array() { length = 0; num = NULL; }; Array(int n); int& operator[](in 阅读全文
posted @ 2021-10-29 13:02 邱明成 阅读(58) 评论(0) 推荐(0) 编辑