作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试根据 Boost::phoenix 文档从模板函数创建惰性函数。代码看起来像这样
#include <iostream>
#include <boost/phoenix/core.hpp>
#include <boost/phoenix/function.hpp>
#include <boost/phoenix/operator.hpp>
#include <boost/phoenix/statement.hpp>
#include <boost/phoenix/object.hpp>
#include <boost/phoenix/function/adapt_function.hpp>
#include <boost/phoenix/core/argument.hpp>
using namespace boost;
using namespace boost::phoenix;
namespace demo
{
bool func(double a,double b)
{
return bool(a > b);
}
}
BOOST_PHOENIX_ADAPT_FUNCTION( bool , func , demo::func , 2)
int main(int argc,char **argv)
{
namespace pl = boost::phoenix::placeholders;
auto comperator = func(pl::arg1,pl::arg2);
std::cout<<comperator(1.2,12.4)<<std::endl;
std::cout<<comperator(0.5,0.1)<<std::endl;
}
这实际上是 BOOST 文档中的示例之一。将此文件存储为 mk_lazy1.cpp 并尝试编译给出
$ g++ -omk_lazy1 mk_lazy1.cpp
mk_lazy1.cpp:26:1: error: template argument 1 is invalid
mk_lazy1.cpp:26:1: error: expected identifier before ‘::’ token
mk_lazy1.cpp:26:1: error: expected initializer before ‘const’
mk_lazy1.cpp: In function ‘int main(int, char**)’:
mk_lazy1.cpp:31:10: error: ‘comperator’ does not name a type
mk_lazy1.cpp:32:35: error: ‘comperator’ was not declared in this scope
我在 Debian 测试系统上使用 gcc-4.7。老实说,我有点迷茫,因为我完全不知道这里出了什么问题(正如我所说,这实际上是 Boost 文档提供的示例之一的逐字复制)。
有人有好主意吗?
最佳答案
删除 using 命名空间,一切都会正常工作。或者在适应宏之后使用命名空间编写,一切都会正常工作。或者将宏放入未命名的命名空间。
关于c++ - BOOST_PHOENIX_ADAPT_FUNCTION 导致无效模板错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16234483/
我正在尝试根据 Boost::phoenix 文档从模板函数创建惰性函数。代码看起来像这样 #include #include #include #include #include #inc
我需要一个惰性评估版本的 std::pair.first。我的方法是使用 boost::phoenix,定义一个模板函数并使用 BOOST_PHOENIX_ADAPT_FUNCTION makro,如
我是一名优秀的程序员,十分优秀!