在 C++11 中,lambda 函数是一个对象,应该可以用它调用 make_tuple ,对吗?
void foobar() {
auto t = std::make_tuple([](){ std::make_shared<int>(); });
}
这段代码对我有用。
现在如果我们添加一个可变参数模板会发生什么:
#include <tuple>
#include <memory>
template <class... T>
void foobar() {
auto t = std::make_tuple([](){ std::make_shared<T>(); }...);
}
int main(int, char**)
{
foobar<int, float, double>();
return 0;
}
这个无法在 GCC 4.7.2 中编译
main.cpp: In lambda function:
main.cpp:6:54: error: parameter packs not expanded with '...':
main.cpp:6:54: note: 'T'
main.cpp: In function 'void foobar()':
main.cpp:6:57: error: expansion pattern '#'lambda_expr' not supported by dump_expr#<expression error>' contains no argument packs
main.cpp: In instantiation of 'void foobar() [with T = {int, float, double}]':
main.cpp:11:29: required from here
我想知道,此代码是否符合标准?