C++(继承)
摘要:
```c++ include include include using namespace std; //抽象基类 class Shape{ protected: string name; public: Shape(string name){ this name=name; } void set 阅读全文
posted @ 2019-01-04 21:30 Indian_Mysore 阅读(96) 评论(0) 推荐(0) 编辑