#include <vector>
#include <algorithm>
void foo( int )
{
}
int main()
{
std::vector< int > v( { 1,2,3 } );
std::for_each( v.begin(), v.end(), []( auto it ) { foo( it+5 ); } );
}
编译后,上面的示例开始错误输出,如下所示:
h4.cpp: In function 'int main()':
h4.cpp:13:47: error: parameter declared 'auto'
h4.cpp: In lambda function:
h4.cpp:13:59: error: 'it' was not declared in this scope
这是否意味着该关键字auto
不应该在 lambda 表达式中使用?
这有效:
std::for_each( v.begin(), v.end(), []( int it ) { foo( it+5 ); } );
为什么带有 auto 关键字的版本不起作用?