概述
先举一个例子:
#include <iostream>
using namespace std;
class CStudent{
private:
char *cname;
int iage;
float fscore;
public:
void Setname(char *name){
cname = name;
}
void Setage(int age){
iage = age;
}
void Setscore(float score){
fscore = score;
}
void say(){
cout<<cname<<"年龄是:"<<iage<<"成绩是:"<<fscore<<endl;
}
};
int main(){
CStudent stu;
stu.Setname("小明");
stu.Setage(15);
stu.Setscore(92.5);
stu.say();
}
通过这个例子,我想说的就是类成员private型,只有类内部能够直接访问,而其他的部分不能直接访问。
类外部只能访问public型的数据,这里的类外部就包括了类的对象。
类内部能够畅通无阻的互相访问
比如说如下的写法就是错误的:
CStudent stu;
stu.cname = "小明";
stu.age = 15;
stu.score = 92.5;
这里就是错误的写法。因为类对象没有办法访问private成员,只能访问Public成员
最后
以上就是爱撒娇黑米为你收集整理的【C++】:C++中的类成员访问权限的全部内容,希望文章能够帮你解决【C++】:C++中的类成员访问权限所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复