浅学C++ STL--string容器代码笔记

3 篇文章 0 订阅

 capacity()

 string类capacity()容器的大小会因编译器的不同而得到的容量大小有所不同;

VS2017中string类首次分配空间为15,溢出之后分配为+16,之后每溢出16就+16,简而言之规律就是:15+16+16+16+\infty

VC++6.0中string类首次分配空间为31,溢出之后分配为+32,之后每溢出32就+32,简而言之规律就是:31+32+32+32+\infty

还有测试了多个c++在线编译器VS codecode blocks的string类首次分配空间均为15,溢出之后分配实际所需空间,简而言之就是15+实际溢出空间大小。【个人实践经验,仅供参考】

#include <iostream>
#include <string>
using namespace std;
int main()
{
	string str0("guangdongsheng");
	string str1("China.GuangDongSheng");
	string str2("Universe.Earth.China.GuangDongSheng");
	cout << str0		<< endl;
	cout << str0.capacity() << endl;
	cout << str0.size()	<< endl;
	cout << str0.length()	<< endl;
	cout << str1		<< endl;
	cout << str1.capacity() << endl;
	cout << str1.size()	<< endl;
	cout << str1.length()	<< endl;
	cout << str2.c_str()    << endl;
	cout << str2.capacity() << endl;
	cout << str2.size()	<< endl;
	cout << str2.length()	<< endl;
	return 0;
}

输出结果:

guangdongsheng
15
14
14
China.GuangDongSheng
31
20
20
Universe.Earth.China.GuangDongSheng
47
35
35

 

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值