"constinit"和"constexpr"之间的真正区别是什么?


constexpr int f() { return 0; }
int g() { return 0; }
constexpr auto c1 = f(); // OK
constinit auto c2 = f(); // OK
constexpr auto d1 = g(); // ill-formed
constinit auto d2 = g(); // ill-formed
int main() {}

如上面的代码所示,我找不到constinitconstexpr之间的任何区别。

constinitconstexpr之间的真正区别是什么?


更新:

相关的 C++20 中的constinit是什么?没有清楚地说明constinitconstexpr之间的区别。

constinit变量是常量初始化的,但它不能在常量表达式中使用,甚至不能自动常量。您的main可以合法地包含此行

c2 = 2; 

是的,初始化后可以修改。

相关内容

  • 没有找到相关文章

最新更新