c – 每个和自由函数的Boost mpl

c – 每个和自由函数的Boost mpl,第1张

概述为什么这段代码不能编译: #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 print 为什么这段代码不能编译:

#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所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/1214353.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-06-05
下一篇 2022-06-05

发表评论

登录后才能评论

评论列表(0条)

保存