我知道有很多类似的问题,但不知何故不同。这是关于以下情况:
#include <iostream>
#include <array>
template<typename T> class MyClass
{
public:
static constexpr std::array<T,4> ARRAY {{4, 3, 1, 5}};
};
int main()
{
constexpr std::array<int, 4> my_array(MyClass<int>::ARRAY); // works fine -> can use the ARRAY to initialize constexpr std::array
constexpr int VALUE = 5*MyClass<int>::ARRAY[0]; // works also fine
int value;
value = my_array[0]; // can assign from constexpr
value = MyClass<int>::ARRAY[0]; // undefined reference to `MyClass<int>::ARRAY
std::cout << VALUE << std::endl;
std::cout << value << std::endl;
return 0;
}
据我了解constexpr
是用于编译时常量。因此编译器已经可以进行一些计算,例如计算VALUE
. 此外,我显然可以定义 a constexpr std::array<,>
,从中我可以将值分配给运行时变量。我希望编译器已经设置value = 4
到可执行程序中,以避免加载操作。但是,我不能直接从静态成员分配,得到错误
undefined reference to `MyClass<int>::ARRAY'
clang-3.7: error: linker command failed with exit code 1
这对我来说毫无意义,因为它可以通过另一个constexpr
变量的中间步骤来完成。
所以我的问题是:为什么不能将类的静态 constexpr 成员分配给运行时变量?
注意:在我的 MWE 中,该类是一个模板类,不会影响错误。但是,我最初对这种特殊情况感兴趣,我希望它对非模板类更通用。
(编译器是clang++
或g++
与-std=c++11
- 他们给出相同的错误)
编辑:@Bryan Chen:忘记了输出行。现已添加。