gpt4 book ai didi

c++ - 指针中的 constexpr 有区别吗

转载 作者:可可西里 更新时间:2023-11-01 18:38:26 25 4
gpt4 key购买 nike

constexpr int *np = nullptrint const *np = nullptr 有什么区别?

在这两种情况下,

np 都是一个指向 null 的常量指针。 constexpr 在指针上下文中是否有任何特定用途。

最佳答案

如果您尝试对指针做任何事情并在常量表达式中使用结果,则必须将指针标记为 constexpr。简单的例子是指针运算,或指针取消引用:

static constexpr int arr[] = {1,2,3,4,5,6};
constexpr const int *first = arr;
constexpr const int *second = first + 1; // would fail if first wasn't constexpr
constexpr int i = *second;

在上面的例子中,second 只能是 constexpr 如果 first 是。类似地,如果 secondconstexpr

,则 *second 只能是常量表达式

如果您尝试通过指针调用constexpr 成员函数并将结果用作常量表达式,则您通过它调用的指针本身必须是常量表达式

struct S {
constexpr int f() const { return 1; }
};

int main() {
static constexpr S s{};
const S *sp = &s;
constexpr int i = sp->f(); // error: sp not a constant expression
}

如果我们改为说

constexpr const S *sp = &s;

那么上面的作品就可以了。请注意,上面确实(错误地)使用 gcc-4.9 编译和运行,但不是 gcc-5.1

关于c++ - 指针中的 constexpr 有区别吗,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32064699/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com