首页 > 后端开发 > C++ > 可以使用'reinterpret_cast”来初始化'constexpr”变量吗?

可以使用'reinterpret_cast”来初始化'constexpr”变量吗?

Susan Sarandon
发布: 2024-11-13 07:14:02
原创
502 人浏览过

Can `reinterpret_cast` be used to initialize a `constexpr` variable?

使用reinterpret_cast 和编译器兼容性进行constexpr 变量初始化

考虑以下代码片段:

struct foo {
  static constexpr const void* ptr = reinterpret_cast<const void*>(0x1);
};
登录后复制

当使用g v4.9,此代码编译成功。但是,clang v3.4 无法编译,并发出错误:

error: constexpr variable 'ptr' must be initialized by a constant expression
登录后复制

编译器正确性

根据 C 11 草案标准(第 5.19 节,第 2 段) ),如果条件表达式涉及reinterpret_cast,则不将其视为常量表达式。因此,clang 的解释是正确的,即 ptr 的初始化无效。

正确声明

要正确声明这种性质的常量表达式,应该使用intptr_t 改为 intptr_t 并在必要时强制转换:

static constexpr intptr_t ptr = 0x1;
登录后复制

或者,gcc 和 clang 支持的解决方法涉及使用未记录的 __builtin_constant_p 宏:

static constexpr const void* ptr =
  __builtin_constant_p(reinterpret_cast<const void*>(0x1)) ?
    reinterpret_cast<const void*>(0x1) : reinterpret_cast<const void*>(0x1);
登录后复制

由于 __builtin_constant_p 检查,两个编译器都接受该表达式,这会强制表达式进行常量折叠。

以上是可以使用'reinterpret_cast”来初始化'constexpr”变量吗?的详细内容。更多信息请关注PHP中文网其他相关文章!

来源:php.cn
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
作者最新文章
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板