http://stackoverflow.com/questions/9650058/deprecated-conversion-from-string-literal-to-char…
deprecated conversion from string constant to ‘char*’ #include <iostream> using namespace std; int fuc(char *a) { cout << a << endl; } int main() { fuc("hello"); } Linux 环境下当GCC版本比较高时,编译代码可能出现的问题 问题是这样产生的,先看这个函数原型: 1 void someF…
warning: deprecated conversion from string constant to 'char* #include<iostream> using namespace std; class Student { private: int age; char*name; public: Student(int m, char *n) { age=m;name=n; } Student() { age=;name="unnamed"; } ~ Stude…
#include <iostream> using namespace std; int fuc(char *a) { cout << a << endl; } int main() { fuc("hello"); } Linux 环境下当GCC版本比较高时,编译代码可能出现的问题 问题是这样产生的,先看这个函数原型: void someFunc(char *someStr); 再看这个函数调用: someFunc("I'm a strin…
warning:deprecated conversion from string constant to 'char *' 解决方式 #include <iostream> using namespace std; int fuc(char *a) { cout << a << endl; } int main() { fuc("hello"); } Linux 环境下当GCC版本号比較高时,编译代码可能出现的问题. 主要原因是: char * 指…
在C++中, char* p = "abc"; // valid in C, invalid in C++ 会跳出警告:warning: ISO C++ forbids converting a string constant to 'char*' [-Wwrite-strings] 改成下面会通过warning char* p = (char*)"abc"; // OK 或者改成下面: char const *p = "abc"; // OK…
自C++11起,我们可以定义 raw string 字符串字面常量. Raw string 允许我们定义所见即所得的字符串字面常量,从而可以省下很多用来修饰特殊 字符的符号. Raw string 以 R"( 开头,以 )" 结尾,可以内含 line break.例如一个用来表示”两个反 斜线和一个n“的寻常字面常量可以定义如下: "\\\\n" 也可以定义它为如下 raw string literal: R"(\\n)" 如果要在 raw st…
第1种字符串赋值方式: char * fileName="./2017-09-02-10-34-10.xml";//这一种字符串赋值方式已经被ISO禁止了 第2种字符串赋值方式: char str[] ="./2017-09-02-10-34-10.xml"; char *fileName=str; 第3种字符串赋值方式: char fileName[] ={"./2017-09-02-10-34-10.xml"};//有无大括号都可以 warn…
语言法典,C/C++社区人手一份,技术讨(hu)论(peng)必备 ISO IEC C99 https://files.cnblogs.com/files/racaljk/ISO_C99.pdf ISO IEC C11 https://files.cnblogs.com/files/racaljk/ISO_C11.pdf ISO IEC C++11 https://files.cnblogs.com/files/racaljk/ISO_CPP_11.rar ISO IEC C++14 https…
语言法典,C/C++社区人手一份,技术讨(hu)论(peng)必备 ISO IEC C99 https://files.cnblogs.com/files/racaljk/ISO_C99.pdf ISO IEC C11 https://files.cnblogs.com/files/racaljk/ISO_C11.pdf ISO IEC C++11 https://files.cnblogs.com/files/racaljk/ISO_CPP_11.rar ISO IEC C++14 https…