奇怪的是,GCC 4.7.2 似乎对以下代码没有任何问题:
template<typename T>
T&& identity(T&& x1) {
return std::forward<T>(x1);
}
int main(int, char**) {
int x1 = 1;
int &x2 = identity(x1);
auto f = [&x1]() mutable {
x1 = x1 + 1;
};
auto g1 = [y=x2+1]() {
static_assert(std::is_same<decltype(y), const int>::value, "fail");
std::cout << "g1: " << y << std::endl;
};
auto h1 = [y=identity(x1)+1]() {
static_assert(std::is_same<decltype(y), const int>::value, "fail");
std::cout << "h1: " << y << std::endl;
};
auto g2 = [&y=x2]() {
static_assert(std::is_same<decltype(y), int&>::value, "fail");
std::cout << "g2: " << y << std::endl;
};
auto h2 = [&y=identity(x1)]() {
static_assert(std::is_same<decltype(y), int&>::value, "fail");
std::cout << "h2: " << y << std::endl;
};
f(); g1(); h1(); g2(); h2();
f(); g1(); h1(); g2(); h2();
return 0;
}
结果如下:
g1: 2
h1: 2
g2: 2
h2: 2
g1: 2
h1: 2
g2: 3
h2: 3
我似乎找不到任何提及在 lambda 捕获列表中捕获任意表达式的内容,即使在 n3285(日期为 2012-10-02)中也是如此。此外,我似乎无法在任何地方找到任何关于此作为官方 GCC 扩展的文档。
这是一个未记录的 GCC 扩展(作为结构成员的 la VLA,一个提议/即将推出的 C++ 功能,GCC 已经提前并提前实现了,两者都不是,还是什么?