我想使用 lambda 方程。在 C++ Builder XE4 中,我尝试了以下方法。
#include <boost/mpl/lambda.hpp>
auto add = [] (int a, int b)-> int{ return a + b; };
但是,我收到“E2188:表达式语法”错误。
问题是什么?
我确信 boost 库已正确安装在我的环境中。
我想使用 lambda 方程。在 C++ Builder XE4 中,我尝试了以下方法。
#include <boost/mpl/lambda.hpp>
auto add = [] (int a, int b)-> int{ return a + b; };
但是,我收到“E2188:表达式语法”错误。
问题是什么?
我确信 boost 库已正确安装在我的环境中。