首页 > 代码库 > Class C++
Class C++
为了尽量降低全局变量的使用并提供用户自己定义类型的功能。C++语言提供了一种新的语言机制---类(class)。并以类作为构造程序的基本单位
#include<iostream>
using namespace std;
class C
{
public:
int getAge()const
{
return age;
};
void setAge(int n)
{
age=n;
}
private:
int age;
};
int main()
{
C c;
c.setAge(22);
cout<<"Myage:"<<c.getAge()<<endl;
return 0;
}
#include<iostream>
using namespace std;
class C
{
public:
int getAge()const
{
return age;
};
void setAge(int n)
{
age=n;
}
private:
int age;
};
int main()
{
C c;
c.setAge(22);
cout<<"Myage:"<<c.getAge()<<endl;
return 0;
}
Class C++
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。