निम्नलिखित कोड 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 में एक लैम्ब्डा के अंदर सदस्य चर का उपयोग कैसे कर सकता हूं?
pair<const int, set<int> >
, कि नक्शे का वास्तविक जोड़ी-प्रकार है। यह संभवतः एक संदर्भ-से-कॉन्स्टेबल भी होना चाहिए।