我了解this
在 lambda 中捕获(修改对象属性)的正确方法如下:
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.