摘要: class student { public: student(int id,string name) { this->id=id; this->name=name; } private: int id; string name; } class student2:public student { public: student2(in... 阅读全文
posted @ 2019-06-08 16:23 LBC不认输 阅读(1057) 评论(0) 推荐(0) 编辑