c++ constexpr const char * vs constexpr const char []

栏目: C++ · 发布时间: 5年前

内容简介:代码日志版权声明:翻译自:http://stackoverflow.com/questions/33692872/constexpr-const-char-vs-constexpr-const-char

第一次尝试不会编译,而第二次尝试.为什么?有什么不同?

第一次尝试:

#include <iostream>

int main()
{
    constexpr const char text2[] = "hello";
    constexpr const char * b = &text2[4];  // error: '& text2[4]' is not a constant expression
    std::cout << b << std::endl;
}

第二次尝试:

#include <iostream>
int main()
{
constexpr const char * text1 = "hello";
constexpr const char * a = &text1[4];
std::cout << a << std::endl;

return 0;
}

我编译(g版本4.9.2)

g++ -std=c++11 -o main *.cpp

这给出了以下错误

main.cpp: In function 'int main()':
main.cpp:7:40: error: '& text2[4]' is not a constant expression constexpr const char * b = &text2[4];  // error: '& text2[4]' is not a constant expression
从C11标准5.19 [expr.const]草案可以看出, address constant expression

是(重点是煤锣前进):

[…] a prvalue core constant expression

of

pointer type that evaluates to the address of an object with

, to the address of a function, or to a null

pointer value, or a prvalue core constant expression of type

std::nullptr_t.

在第一种情况下,虽然“hello”是一个具有静态存储持续时间的字符串文字.它被复制到没有静态存储持续时间的数组text2中.

而在第二种情况下,text1是指向具有静态存储持续时间的 string literal 的指针.

改变你的第一个例子,使text2 static( see it live ):

constexpr char static text2[] = "hello";
               ^^^^^^

我们不再收到错误.

我们可以看到一个字符串文字具有从2.14.5节[lex.string]的静态存储时间:

Ordinary string literals and UTF-8 string literals are also referred  to as narrow string literals. A narrow string literal has type “array  of n const char”, where n is the size of the string as defined below,  and has static storage duration (3.7).

代码日志版权声明:

翻译自:http://stackoverflow.com/questions/33692872/constexpr-const-char-vs-constexpr-const-char


以上所述就是小编给大家介绍的《c++ constexpr const char * vs constexpr const char []》,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对 码农网 的支持!

查看所有标签

猜你喜欢:

本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们

移动应用的设计与开发

移动应用的设计与开发

[美] 弗林 (Brian Fling) / 马晶慧 / 电子工业出版社 / 2010-5 / 59.80元

本书全面介绍了如何在移动设备上设计和开发应用程序。书中从介绍移动产业的生态环境和移动媒体开始,阐述产品策划的方法、产品架构、视觉设计和产品类型的选择,并详细描述了产品实现过程中所用到的一些技术、工具和概念,最后还简单介绍了如何获得利润和降低成本,肯定了iPhone在移动设备发展史上起到的巨大推动作用。本书不仅能让读者了解到移动设计和开发的知识,更重要的是,它揭示了移动开发的代价高昂、标准混乱的根本......一起来看看 《移动应用的设计与开发》 这本书的介绍吧!

HTML 编码/解码
HTML 编码/解码

HTML 编码/解码

XML 在线格式化
XML 在线格式化

在线 XML 格式化压缩工具

HEX HSV 转换工具
HEX HSV 转换工具

HEX HSV 互换工具