问题描述
#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 (将#修改为@)