如何解决修饰符 constexpr 具有 const 的潜在含义,为什么不能完全取代它?
#include <iostream>
using namespace std;
int
main(int argc,char **argv) {
const char *a ="123";
constexpr const char *b ="123"; // g++ compile ok
constexpr char *c ="123"; // g++ compile warning
if (a == b) {
cout << "a pointer is equal to b" << endl;
} else {
cout << "a pointer is not equal to b" << endl;
}
}
使用g++工具链编译。我被告知 const char* 被转换为 char*。
constexpr char *c ="123";
为什么 constexpr 没有涵盖“const”的含义?
⋊> /h/m/stackoverfolw g++ test7.cpp -std=c++11
test7.cpp:在函数'int main(int,char**)'中:
test7.cpp:9:21: 警告:ISO C++ 禁止将字符串常量转换为 'char*' [-Wwrite-strings]
constexpr char *c ="123";
^
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。