#include <boost/mpl/vector.hpp>#include <boost/mpl/for_each.hpp>#include <iostream>using namespace std;using namespace boost;template <class T> // specific visitor for type printingstatic voID print_type(T t) { std::cout << typeID(T).name() << std::endl; }typedef mpl::vector<int,long,char*> s;int main (){ mpl::for_each<s>(print_type());}
我想知道 – 如何使用同一类中的自由函数使boost mpl for_each工作?
解决方法 如上所述,你需要一个仿函数.下面的代码包含一个额外的包装模板,允许打印仿函数处理引用.
#include <iostream>#include <typeinfo>#include <boost/mpl/vector.hpp>#include <boost/mpl/for_each.hpp>#include <boost/mpl/placeholders.hpp>using namespace std;using namespace boost;template <typename T>struct wrap {};struct print_type{ template< typename T> voID operator()( wrap<T> ) const { cout << typeID(T).name() << "\n"; }};typedef mpl::vector<int,long&,char*> s;int main (){ mpl::for_each<s,wrap<mpl::placeholders::_1> >(print_type()); return 0;}
注意:此代码基于DavID Abrahams和Aleksy Gurtovoy撰写的“C模板元编程”一书中的示例
总结以上是内存溢出为你收集整理的c – 每个和自由函数的Boost mpl全部内容,希望文章能够帮你解决c – 每个和自由函数的Boost mpl所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)