다음 코드는 gcc 4.5.1로 컴파일되지만 VS2010 SP1에서는 컴파일되지 않습니다.
#include <iostream>
#include <vector>
#include <map>
#include <utility>
#include <set>
#include <algorithm>
using namespace std;
class puzzle
{
vector<vector<int>> grid;
map<int,set<int>> groups;
public:
int member_function();
};
int puzzle::member_function()
{
int i;
for_each(groups.cbegin(),groups.cend(),[grid,&i](pair<int,set<int>> group){
i++;
cout<<i<<endl;
});
}
int main()
{
return 0;
}
이것은 오류입니다 :
error C3480: 'puzzle::grid': a lambda capture variable must be from an enclosing function scope
warning C4573: the usage of 'puzzle::grid' requires the compiler to capture 'this' but the current default capture mode does not allow it
그래서,
1> 어떤 컴파일러가 옳습니까?
2> VS2010의 람다 내에서 멤버 변수를 어떻게 사용할 수 있습니까?
관련; 매우 유용한 정보 : thispointer.com/…
—
Gabriel Staples
pair<const int, set<int> >
의 실제 쌍 유형 이어야합니다 . 그것은 또한 참조에 대한 참조 일 것입니다.