摘要: #include<iostream> #include<string> using namespace std; class StudentNo { private: static StudentNo *student; string no; StudentNo() {}; void setStud 阅读全文
posted @ 2021-10-06 21:15 yasai 阅读(27) 评论(0) 推荐(0) 编辑
摘要: #include<iostream> #include<string> using namespace std; //抽象产品类 男人 class Man { public: virtual void makeM() = 0; }; //具体产品类 白色男人 class WhiteMan : pub 阅读全文
posted @ 2021-10-06 21:06 yasai 阅读(20) 评论(0) 推荐(0) 编辑