constexpr用指针初始化

时间:2012-11-21 18:23:26

标签: c++ pointers const constexpr

我正在尝试使用指向int的指针来初始化constexpr声明,这是一个const对象。我还尝试使用不是const类型的对象定义对象。

代码:

#include <iostream>

int main()
{
constexpr int *np = nullptr; // np is a constant to int that points to null;
int j = 0;
constexpr int i = 42; // type of i is const int
constexpr const int *p = &i; // p is a constant pointer to the const int i;
constexpr int *p1 = &j; // p1 is a constant pointer to the int j; 
}

g ++ log:

constexpr.cc:8:27: error: ‘& i’ is not a constant expression
constexpr.cc:9:22: error: ‘& j’ is not a constant expression

我相信这是因为main中的对象没有固定的地址,因此g ++会向我发送错误消息;我该怎么纠正这个?不使用文字类型。

1 个答案:

答案 0 :(得分:13)

让他们static来修复他们的地址:

int main()
{
  constexpr int *np = nullptr; // np is a constant to int that points to null;
  static int j = 0;
  static constexpr int i = 42; // type of i is const int
  constexpr const int *p = &i; // p is a constant pointer to the const int i;
  constexpr int *p1 = &j; // p1 is a constant pointer to the int j; 
}

这称为地址常量表达式 [5.19p3]:

  

地址常量表达式是prvalue核心常量表达式   指针类型的计算结果为具有静态的对象的地址   存储持续时间,函数地址或空指针   值,或类型为std :: nullptr_t的prvalue核心常量表达式。