摘要: #include <iostream>using namespace std;class Animal{public: void eat() { cout<<"animal eat"<<endl; }protected: void sleep() { cout<<"animal sleep"<<endl; }private: void breathe() { cout<<"animal beathe"<<endl; }};class Fish:publ 阅读全文
posted @ 2013-04-18 19:47 shinecox 阅读(204) 评论(0) 推荐(0) 编辑