public:公共,可访问
protected:保护,不可访问
private:私有,不可访问
1. 不可访问
#include<iostream>
using namespace std;
class Person
{//类的内部
private:
int m_money;//私有数据,类的外部不可访问
protected:
int age;
public:
void dese()
{
cout << "我有房有车年轻有钱爱得瑟" << endl;
}
};
void test01()
{
//用类去实例化对象(用person定义一个变量)
Person lee;
//lee.m_money = 200;不可访问
}
int main()
{
test01();
return 0;
}
报错
2. 可访问
#include<iostream>
using namespace std;
class Person
{//类的内部
private:
int m_money;//私有数据,类的外部不可访问
protected:
int age;
public:
void dese()
{
cout << "我有房有车年轻有钱爱得瑟" << endl;
}
};
void test01()
{
//用类去实例化对象(用person定义一个变量)
Person lee;
lee.dese();//公有,类的外部可以访问
}
int main()
{
test01();
return 0;
}
输出结果
3. 类的内部数据之间可以访问
通过在类的内部的public中访问m_money和age,使得在外部dese()函数中可以输出私有数据m_money和age。
虽然private和protected是私有的数据,类的外部不可访问,但用户可以借助public公有的方法间接访问私有的、保护的数据。
class Person
{//类的内部
private:
int m_money;//私有数据,类的外部不可访问
protected:
int age;
public:
void dese()
{
m_money = 100;
age = 20;
cout << "我有房有车年轻有钱爱得瑟" << endl;
cout <<"我的存款:"<< m_money << "万" << endl;
cout << "我的年龄:" << age << endl;
}
};
void test01()
{
//用类去实例化对象(用person定义一个变量)
Person lee;
lee.dese();//公有,类的外部可以访问
//虽然private和protected是私有的数据,类的外部不可访问,
//但用户可以借助public公有的方法间接访问私有的、保护的数据
}
int main()
{
test01();
return 0;
}
输出
4. 公有方法访问不同的私有数据
#include<iostream>
using namespace std;
class Person
{//类的内部
private:
int m_money;//私有数据,类的外部不可访问
protected:
int age;
public:
void dese()
{
m_money = 100;
age = 20;
cout << "得瑟君" << endl;
cout << "我有房有车年轻有钱爱得瑟" << endl;
cout <<"我的存款:"<< m_money << "万" << endl;
cout << "我的年龄:" << age << endl;
cout << " " << endl;
}
void zhuangb()
{
m_money = 200;
age = 18;
cout << "装逼仔" << endl;
cout << "我要开始装b了" << endl;
cout << "我的存款:" << m_money << "万" << endl;
cout << "我的年龄:" << age << endl;
}
};
void test01()
{
//用类去实例化对象(用person定义一个变量)
Person lee;
lee.dese();//公有,类的外部可以访问
//虽然private和protected是私有的数据,类的外部不可访问,
//但用户可以借助public公有的方法间接访问私有的、保护的数据
Person zhuangbzai;
zhuangbzai.zhuangb();
}
int main()
{
test01();
return 0;
}
输出
两种不同的公有方法可以得到不同的私有数据
总结
数据一般设为私有,方法(函数)一般设为公有