2019年6月9日

摘要: 1 #include 2 #include 3 4 class A{ 5 public: 6 virtual std::string toString(){ 7 //std::string toString(){ 8 return "A"; 9 } 10 }; 11 12 class B: public A{ 13 public... 阅读全文

posted @ 2019-06-09 20:37 金色的省略号 阅读(138) 评论(0) 推荐(0) 编辑