C++反射实现

本文介绍了如何使用反射技术在C++中通过对象类名获取成员属性,以及如何通过指针和偏移实现动态修改成员变量值的提升版实现。涵盖类、映射、继承与面向对象编程的深入应用。
  1. 基础版:只实现了通过对象的类名,获取到成员属性的name和type
#include <string>
#include<iostream>
#include<map>
#include<vector>
#include<set>
using namespace std;



#define REFLECT_ATTR(type,name) ReflectManager __##name = ReflectManager(this,#type,#name)

class Object
{
public:
	virtual string toString() const
	{
		cout << "Object::toString:::" << endl;
		char buffer[16] = {'a','b','c'};
		return buffer;
	}
	string getClassName() const
	{
		return typeid(*this).name();
	}
};

class ReflectManager
{
private:
	//key:className,value:set<vector<string>>,,vec[0]:type,vec[1]:name
	static map<string, set<vector<string>>>& getMap()
	{
		static map<string, set<vector<string>>> map;
		return map;
	}

public:
	ReflectManager(Object* self, const char* type, const char* name)
	{
		static map<string, set<vector<string>>>& attrmap = getMap();
		string className = self->getClassName();
		vector<string> vec;
		vec.push_back(type);
		vec.push_back(name);
		attrmap[className].insert(vec);

	}

	static set<vector<string>> GetList(const string& key)
	{
		static map<string, set<vector<string>>> attrmap = getMap();
		set<vector<string>> vecSet;

		auto it = attrmap.find(key);
		if (it == attrmap.end())
		{
			return vecSet;
		}
		else
		{
			return it->second;
		}
	}
};

class Josn :public Object
{
public:
	string toString() const override
	{
		cout << "Json::toString::::"<<endl;
		return string();
	}
	Josn(int a, bool b)
		:aaa(a),
		bbb(b) 
	{
	}
	
private:
	
	int aaa;
	REFLECT_ATTR(int, aaa);
	//const ReflectManager __aaa= ReflectManager(this, "int", "aaa");
	bool bbb;
	REFLECT_ATTR(bool, bbb);
	//const ReflectManager __bbb= ReflectManager(this, "bool", "bbb");
};




int main()
{
	Object* objPtr = new Josn(1,true);
	string objName = objPtr->getClassName();
	static set<vector<string>> objSet = ReflectManager::GetList(objName);

	cout << objName << endl;
	for (auto it : objSet)
	{
		cout << "type:" << it[0] << "|||name:" << it[1] << endl;
	}

	return 0;
}
  1. 提升版:通过对象指针和offset,来实现修改成员变量值
评论
成就一亿技术人!
拼手气红包6.0元
还能输入1000个字符
 
红包 添加红包
表情包 插入表情
 条评论被折叠 查看
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值