首页 > 代码库 > public 和private 的区别
public 和private 的区别
在C++中成员默认是私有的,私有成员是不能被对象直接访问的,要想解决这个问题就需要,需要把这个成员定义为public 或者是定义一个函数的接口
#include<iostream.h>
class Humn{
private :
int height;
public :
void set_height(int h){
if(h>0 && h<=160)
{
height = h;
}else{
cout<<"必须输入一个数值在0-160之间";
}
}
void show(){
cout<<height;
}
};
int main()
{
Humn mike;
mike.set_height(180);
mike.show();
cout<<"\n";
Humn jack;
jack.set_height(50);
jack.show();
return 0;
}
public 和private 的区别
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。