vc++如何創建程序-構造和繼承

#include<iostream.h> //定義一個動物類 class Animal { public: void eat();//添加方法 { cout<<"animal eat"<<endl; } void sleep();//添加方法 { cout<<"animal sleep"<<endl; } void breathe();//添加方法 { cout<<"animal breathe"
相關文章
相關標籤/搜索