常量表达式必须计算为整型吗?

发布于 2024-12-16 11:54:38 字数 147 浏览 0 评论 0原文

假设我有以下内容:

int i = 1;
String str("abc");

str 会被视为常量表达式吗?

从很多 C++ 书籍来看,常量表达式似乎必须计算为整型。

Lets say I have the following:

int i = 1;
String str("abc");

Would str be consider a constant expression?

From lots of C++ books, it seems a constant expression must be evaluated to an integral type.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

葵雨 2024-12-23 11:54:38

str 会被视为常量表达式吗?

不,不会的。 C++11 中引入了一个新关键字 constexpr,它有助于概括常量表达式的概念。如果来自 "abc"String 构造函数足够简单,那么可以将其声明为 constexpr;但是这样的构造函数可能必须分配内存,因此它不符合条件。

Would str be consider a constant expression?

No, it won't. In C++11 there is a new keyword constexpr introduced that helps generalize the notion of constant expressions. If String constructor from "abc" is trivial enough then it could be declared constexpr; however such constructor probably has to allocate memory so it wouldn't qualify.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文