C++中string对象的大小

《C++Primer》里说了:
string类型支持长度可变的字符串。C++标准库将负责管理与相关的内存,以及提供各种有用的操作。

由此可见,string类型的大小应该是动态可变的,不够的时候可能会扩增,扩增和max_size(),string::size_type的关系我也不是很清楚。

string里有max_size()方法可以查看string对象可以保持的最大字符数。
size()方法和length()方法等效,返回string对象所保持的字符数。
// comparing size, length, capacity and max_size
#include <iostream>
using namespace std;

int main ()
{
  string str ("Test string");
  cout << "size: " << str.size() << "\n";
  cout << "length: " << str.length() << "\n";
  cout << "capacity: " << str.capacity() << "\n";
  cout << "max_size: " << str.max_size() << "\n";
  return 0;
}
输出:
size: 11
length: 11
capacity: 11
max_size: 1073741820

这个max_size大概等于1G。
这个结果和c++reference不一样,特别是capacity的值,不太理解,不知道为什么。
我是用g++编译的。
http://www.cplusplus.com/reference/string/string/max_size/




string里size()函数返回的是string::size_type类型。
<<c++primer>>里说:
我们不知道string::size_type的确切类型,但是可以知道是unsigned类型的。
可以用代码测试:
#include<iostream>
#include<limits>
using namespace std;
int main()
{
 cout<<"max string ="
      <<numeric_limits<string::size_type> ::max()<<endl;
  cout<<"max int ="
      <<numeric_limits<int>::max()<<endl;
  cout<<"max unsigned int ="
      <<numeric_limits<unsigned int>::max()<<endl;

}
输出:
max string =4294967295
max int =2147483647
max unsigned int =4294967295


4294967295个字节,大概等于4G。
当然这是32位机器的情况。

这两个测试都没有包含  #include<string>
搜了下,发现这是个不好的习惯,不同的STL平台实现不同,还是应该加上

http://topic.csdn.net/t/20051213/12/4456074.html

查看库文件在/usr/include/c++/4.4里,就是编译器安装目录的某个文件夹里。

你可能感兴趣的:(String)