c++访问类中私有成员变量的几种方法

今天突然遇到这个需求了,就拿出来记录一下。

常用的3种方法

  1. set/get接口
  2. 友元类/友元函数
  3. 通过指针访问内存地址

1.友元方法

#include<iostream>
using namespace std;
class A {
public:
	A(){}
	~A(){}

	friend class B; //声明友元类
private:
	int num = 10;
};

class B {
public:
	A a;
	int Sum(){
		return a.num + 10; 
	}
};
int main(){
	B b;
	cout << b.Sum()<< endl;
}

2. 内存地址操作法


#include <iostream>
#include <string>
using namespace std;
 
class center
{
public:
	void setX(float _x){x=_x;}
	void setY(float _y){y=_y;}
	void setMeanValue(float avg){meanValue=avg;}
	float getX(){return x;}
	float getY(){return y;}
	float getMeanValue(){return meanValue;}
	center():x(0.0),y(0.0),meanValue(0.0){}
private:
	float x;
	float y;
	float meanValue;
};
 
int main()
{
	center A;
	//普通青年的赋值方法;
	A.setX(1.0);
	A.setY(4.0);
	A.setMeanValue(13.0);
	cout<<A.getX()<<" "<<A.getY()<<" "<<A.getMeanValue()<<endl;
	
	//文艺青年的赋值方法;
	//*((float*)&A):将center对象A的内存空间强制类型转化为用int*指向的内存空间,访问该内存
	float tmp = *((float*)&A);
	cout<<tmp<<endl;//输出A.x的值
	tmp = *((float*)&A + 1);
	cout<<tmp<<endl;//输出A.y的值
	*((float*)&A + 2)=2;//修改A.meanValue的值
	cout<<A.getMeanValue()<<endl;
}

也可以通过友元的内存地址来操作,即通过class B 的内存地址访问 class A的私有成员。

转载:
C++访问私有成员变量的方法

评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值