免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
123
最近访问板块 发新帖
楼主: hy036630
打印 上一主题 下一主题

std::string你也许不知道的秘密 [复制链接]

论坛徽章:
2
青铜圣斗士
日期:2015-11-26 06:15:59数据库技术版块每日发帖之星
日期:2016-07-24 06:20:00
21 [报告]
发表于 2011-12-29 18:45 |只看该作者
c_str() 返回一个数组, 保证有size()+1个元素, 前size()个元素是字符串内容(可能有0), s.c_str()[size()] 是0 。
而data() 返回一个数组。 如果size()>0 则保证有size()个元素, 前size个元素是字符串内容, 没说它不可以有size()+1个元素啊……

一种实现:
capacity()始终>=size()+1。
data() 直接返回内部数组的地址。
c_str() 也返回这个数组的地址, 但返回之前将末尾填个0……

论坛徽章:
11
未羊
日期:2013-12-16 12:45:4615-16赛季CBA联赛之青岛
日期:2016-04-11 19:17:4715-16赛季CBA联赛之广夏
日期:2016-04-06 16:34:012015亚冠之卡尔希纳萨夫
日期:2015-11-10 10:04:522015亚冠之大阪钢巴
日期:2015-07-30 18:29:402015亚冠之城南
日期:2015-06-15 17:56:392015亚冠之卡尔希纳萨夫
日期:2015-05-15 15:19:272015亚冠之山东鲁能
日期:2015-05-14 12:38:13金牛座
日期:2014-12-04 15:34:06子鼠
日期:2014-10-16 13:40:4715-16赛季CBA联赛之八一
日期:2016-07-22 09:41:40
22 [报告]
发表于 2011-12-29 18:53 |只看该作者
OwnWaterloo 发表于 2011-12-29 18:45
c_str() 返回一个数组, 保证有size()+1个元素, 前size()个元素是字符串内容(可能有0), s.c_str() 是0  ...


好吧, 我承认是更好一些, 而且我之前也没想到这个办法

论坛徽章:
0
23 [报告]
发表于 2011-12-30 10:04 |只看该作者
回复 5# zylthinking


    你见过哪家的 std::string::c_str() 是这么实现的?

论坛徽章:
11
未羊
日期:2013-12-16 12:45:4615-16赛季CBA联赛之青岛
日期:2016-04-11 19:17:4715-16赛季CBA联赛之广夏
日期:2016-04-06 16:34:012015亚冠之卡尔希纳萨夫
日期:2015-11-10 10:04:522015亚冠之大阪钢巴
日期:2015-07-30 18:29:402015亚冠之城南
日期:2015-06-15 17:56:392015亚冠之卡尔希纳萨夫
日期:2015-05-15 15:19:272015亚冠之山东鲁能
日期:2015-05-14 12:38:13金牛座
日期:2014-12-04 15:34:06子鼠
日期:2014-10-16 13:40:4715-16赛季CBA联赛之八一
日期:2016-07-22 09:41:40
24 [报告]
发表于 2011-12-30 10:20 |只看该作者
本帖最后由 zylthinking 于 2011-12-30 10:21 编辑
giantchen 发表于 2011-12-30 10:04
回复 5# zylthinking


我返回去仔细想了想, 发觉是被误导了:


string::c_str
public member function
const char* c_str ( ) const;
Get C string equivalent

Generates a null-terminated sequence of characters (c-string) with the same content as the string object and returns it as a pointer to an array of characters.

A terminating null character is automatically appended.

The returned array points to an internal location with the required storage space for this sequence of characters plus its terminating null-character, but the values in this array should not be modified in the program and are only guaranteed to remain unchanged until the next call to a non-constant member function of the string object.


string::data
public member function
const char* data() const;
Get string data

Returns a pointer to an array of characters with the same content as the string.

Notice that no terminating null character is appended (see member c_str for such a functionality).

The returned array points to an internal location which should not be modified directly in the program. Its contents are guaranteed to remain unchanged only until the next call to a non-constant member function of the string object.

看到以上时, 脑筋没转弯; 事后又忘记的差不多, 只记得有这么回事, 误以为是从源码看到的

论坛徽章:
0
25 [报告]
发表于 2011-12-30 14:40 |只看该作者
oh MGD
it is supposed that c_str() return the pointer of the array, which should not malloc a copy.

论坛徽章:
0
26 [报告]
发表于 2011-12-31 20:27 |只看该作者
C使用char[]保存字符串,以结束符表示字符串结尾。std::string加了数据缓冲区起始标志。
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP