开发者

Boost function and boost lambda

开发者 https://www.devze.com 2023-02-09 21:22 出处:网络
I\'ve seen a few related questions, but am still just puzzled.What\'s wrong with this syntax: boost::fun开发者_C百科ction<int (int)> g = f;

I've seen a few related questions, but am still just puzzled. What's wrong with this syntax:

boost::fun开发者_C百科ction<int (int)> g = f;
boost::function<int (int)> g2 = 2*g(boost::lambda::_1);

I've tried it with boost 1.35 and 1.38 (these are the two installations I have lying around) on gcc 4.3.4, and they both give variations of the error:

no match for call to '(boost::function<int ()(int)>) (const boost::lambda::lambda_functor<boost::lambda::placeholder<1> >&)'


You can't call a function with a placeholder directly. You have to use bind.

boost::function<int (int)> g2 = 2 * boost::lambda::bind(g, boost::lambda::_1);

(Example)


I suggest you give up Boost.Lambda as it’s out of date. The compiler which supports C++0x provides native lambda and is easier to understand. You can use GCC with 4.4 or higher version, Visual Studio 2010 also supports C++0x.

0

精彩评论

暂无评论...
验证码 换一张
取 消