C++ 第一课 类的定义

来源:互联网 发布:搜狗浏览器网络收藏夹 编辑:程序博客网 时间:2024/06/06 01:51
#include <iostream>using namespace std;class animal{    public:        int  getAge()        {            return mAge;        }        void setAge(int age)        {            mAge = age;        }        void addAge()        {            mAge++ ;        }    private:        int mAge;};int main(){    animal A;    A.setAge(10);    cout<<"the age is "<<A.getAge();    return 0;}


0 0
原创粉丝点击