C++11模板可变参数读取结构体成员变量

#ifndef variadic_learn_h__
#define variadic_learn_h__
#include <iostream>
#include <string>

namespace xLearn{

	namespace serialize
	{
		template<typename ty, class enable = void>
		struct serialize_impl;

		template<typename ty >
		inline void print_val(ty& val)
		{
			typedef typename std::remove_cv<ty>::type rty;
			serialize_impl<rty>::write(val);
		}
	}

	// 最终递归函数
	void  print_members()
	{
		return;
	}
	// 展开函数
	template<typename head, typename... args>
	void  print_members(head& h, args& ... args_)
	{
		std::cout << h << "\n";
		if (sizeof...(args))
		{
			print_members(args_...);
		}
	}

#define ARGS_LEARN(TYPE,...) \
		namespace serialize\
						{\
	  template<>\
	  struct serialize_impl < TYPE , void >\
					  {\
	    struct serialize_helper : public TYPE\
					    {\
	    inline void write_() const\
					    {\
	      print_members(__VA_ARGS__);\
					    }\
						  };\
	    static inline void write( TYPE const& v)\
					  {\
	    reinterpret_cast<serialize_helper const &>(v).write_();\
					  }\
					};\
					}
}
#endif // variadic_learn_h__

#include "variadic_learn.h"

using namespace  std;

struct Education
{
	string	School;
	double	GPA;

	Education() :GPA(0.0){}

	Education(const string& school, double gpa)
		:School(school), GPA(gpa)
	{
	}
};

namespace xLearn
{ 
	ARGS_LEARN(Education, School, GPA)
}
int main()
{
	Education test = Education("MIT", 600.11);

	xLearn::serialize::print_val(test);

	int i = 0;
}
  • 0
    点赞
  • 5
    收藏
    觉得还不错? 一键收藏
  • 3
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 3
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值