我正在使用boost变量来保存一些生成的类型,现在我的代码生成器创建一个标题,其类型和变体能够持有它们.在初始化时间,我想迭代变体中允许的类型,而不是这个变体所持有的类型.
我可以用一个变种做这个吗?
解决方法
boost :: variant通过类型公开其类型,这是一个MPL列表.您可以使用
mpl::for_each通过MPL列表执行运行时操作:
struct printer { template<class T> void operator()(T t) { std::cout << typeid(T).name() << std::endl; } }; // ... typedef boost::variant<int,char> var; boost::mpl::for_each<var::types>(printer());