gpt4 book ai didi

c++ - 为什么不能在常量表达式中使用 reinterpret_cast?

转载 作者:行者123 更新时间:2023-12-05 02:39:34 32 4
gpt4 key购买 nike

<分区>

我遇到了以下错误:

class NormalClass
{
public:
constexpr NormalClass() : arr{}, debug_ptr((int*)arr)
{
//'reinterpret_cast' is not a constant expression
//cast that performs the conversions of a reinterpret_cast is not allowed in a constant expression
}

public:

char arr[5];
int* debug_ptr;


};

constinit NormalClass normal;

int main()
{

}

最初这是在一个模板中,带有 (T*) 转换。为什么在 constexpr 中不允许这样的转换?

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