摘要: 首先看这么一个例子: #include <iostream> using namespace std; class Animal{ public: void speak(){ cout << "Animal speak" << endl; } }; class Dog :public Animal{ 阅读全文
posted @ 2020-10-15 13:10 liuw_flexi 阅读(125) 评论(0) 推荐(0) 编辑