摘要: #include <iostream> #include <string> using namespace std; class Student { public: Student() { cout << "默认构造函数" << endl; }; Student(int a, int s) { co 阅读全文
posted @ 2020-10-08 20:42 骑者赶路 阅读(89) 评论(0) 推荐(0) 编辑