4

我去看看你是否可以在变量模板声明中使用 auto 。

template <typename T>
auto F = T{};

很好,但是一旦您尝试使用它,就会发出叮当声。

int f = F<int>; // error: cannot initialize a variable of type 'int' with an lvalue of type 'auto'
auto f = F<int>; // Stacktrace
decltype(F<int>) f = F<int>; // StackFace
std::cout << std::is_same<int, decltype(F<int>)>::value; // false
std::cout << typeid(decltype(F<int>)).name(); // Stacktrace
std::cout << std::is_same<decltype(F<int>), decltype(F<int>)>::value; // true

,的任何组合都decltype(auto)不起作用,auto即使它说这auto是一个左值。

int f = static_cast<int>(F<int>); // error: static_cast from 'auto' to 'int' is not allowed

我以前从未见过自动以这种方式行事。是因为模板变量还是因为clang如何对待auto?

4

1 回答 1

1

这似乎在最新版本的clang; 将其放入文件并调用

clang++ -std=c++1y test.cpp

没有给我任何错误。

kevinushey@Kevin-MBP:~$ clang++ -v
clang version 3.5 (trunk 201469)
Target: x86_64-apple-darwin13.0.0
Thread model: posix
于 2014-02-16T00:19:26.263 回答