最佳答案
我理解在 lambda 中捕获 this
(修改对象属性)的正确方法如下:
auto f = [this] () { /* ... */ };
但我很好奇我看到的下面这些特点:
class C {
public:
void foo() {
// auto f = [] () { // this not captured
auto f = [&] () { // why does this work?
// auto f = [&this] () { // Expected ',' before 'this'
// auto f = [this] () { // works as expected
x = 5;
};
f();
}
private:
int x;
};
我感到困惑(并希望得到答案)的奇怪之处在于,为什么下面的方法奏效:
auto f = [&] () { /* ... */ }; // capture everything by reference
以及为什么我不能通过引用明确地捕获 this
:
auto f = [&this] () { /* ... */ }; // a compiler error as seen above.