这不会编译,因为lambda表达式按值返回:
#include <iostream>
class Item
{
public:
int& f(){return data_;}
private:
int data_ = 0;
};
int main()
{
Item item;
auto lambda = [](Item& item){return item.f();};
lambda(item) = 42; // lambda(item) is a rvalue => compile time error
std::cout << item.f() << std::endl;
return 0;
}
有没有解决的办法?我可以强制 lambda通过引用返回吗?