@CrazyHenry
2018-01-23T13:13:56.000000Z
字数 299
阅读 1038
ccccC++Primer
- Author:李英民 | Henry
- E-mail: li
_
yingmin@
outlookdot
com- Home: https://liyingmin.wixsite.com/henry
快速了解我: About Me
转载请保留上述引用内容,谢谢配合!
这种使用字符串字面值给指针赋值的方式并不好,而且编译器会给出warning:
实际上,C++ Primer上都没有这种赋值方法,仅仅给出一种使用字符数组的方法:
实际上,C++在输出一个字符数组的时候,也将其转换成了指针,直到遇到'\0'停止。