摘要: #include #include #include using namespace std; class Student { public: Student(int age,string name) { m_age=age; m_name=name; } Student(const Student &stu) { ... 阅读全文
posted @ 2017-02-22 23:37 sky20080101 阅读(116) 评论(0) 推荐(0)