#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
をラムダ式で使用してはならないということですか?
これは機能します:
std::for_each( v.begin(), v.end(), []( int it ) { foo( it+5 ); } );
auto キーワードを含むバージョンが機能しないのはなぜですか?