C++ 之 C style string

1. 字符串字面值的类型是字符常量数组。(const char[])

2.  C style string:应null字符null结束的字符数组。

     eg. char cha3[] = "Hello world"; // null terminator added automatically

           char *chp = "Hello"; // null terminator added automatically

3. C++ 通过(const)char *类型来操纵C风格字符串。

原文链接: https://www.cnblogs.com/xiaoxxy/archive/2011/07/11/2102914.html

欢迎关注

微信关注下方公众号,第一时间获取干货硬货;公众号内回复【pdf】免费获取数百本计算机经典书籍

    C++ 之 C style string

原创文章受到原创版权保护。转载请注明出处:https://www.ccppcoding.com/archives/28436

非原创文章文中已经注明原地址,如有侵权,联系删除

关注公众号【高性能架构探索】,第一时间获取最新文章

转载文章受原作者版权保护。转载请注明原作者出处!

(0)
上一篇 2023年2月8日 上午5:58
下一篇 2023年2月8日 上午5:58

相关推荐