C++获取字符串长度详解

String 类型对象包括三种求解字符串长度的函数:size() 和 length()、 maxsize() 和 capacity():

  • size() 和 length():这两个函数会返回 string 类型对象中的字符个数,且它们的执行效果相同。
  • max_size():max_size() 函数返回 string 类型对象最多包含的字符数。一旦程序使用长度超过 max_size() 的 string 操作,编译器会拋出 length_error 异常。
  • capacity():该函数返回在重新分配内存之前,string 类型对象所能包含的最大字符数。

string 类型对象还包括一个 reserve() 函数。调用该函数可以为 string 类型对象重新分配内存。重新分配的大小由其参数决定。reserve() 的默认参数为 0。

上述几个函数的使用方法如下程序所示:

  1. #include
  2. #include
  3. using namespace std;
  4. int main ()
  5. {
  6.     int size = 0;
  7.     int length = 0;
  8.     unsigned long maxsize = 0;
  9.     int capacity=0;
  10.     string str ("12345678");
  11.     string str_custom;
  12.     str_custom = str;
  13.     str_custom.resize (5);
  14.     size = str_custom.size();
  15.     length = str_custom.length();
  16.     maxsize = str_custom.max_size();
  17.     capacity = str_custom.capacity();
  18.     cout << "size = " << size << endl;
  19.     cout << "length = " << length << endl;
  20.     cout << "maxsize = " << maxsize << endl;
  21.     cout << "capacity = " << capacity << endl;
  22.     return 0;
  23. }

程序执行结果为:

size = 8
length = 8
maxsize = 2147483647
capacity = 15

由此程序可知,string 类型对象 str_custom 调用 reserve() 函数时,似乎并没有起到重新分配内存的目的(笔者所用编译器为 Visual C++6.0)。

修改上述代码,删除语句 str_custom.reserve (5),在代码 str_custom = str 之后如下添加代码:

str_custom.resize (5);

修改后程序的执行结构如下:

size = 5
length = 5
maxsize = 2147483647
capacity = 15

重新设置 string 类型对象 str_custom 的大小之后,重新求解 str_custom 的大小,其执行效果与设置的数值一致(均为 5)。


本文来自互联网用户投稿,文章观点仅代表作者本人,不代表本站立场,不承担相关法律责任。如若转载,请注明出处。 如若内容造成侵权/违法违规/事实不符,请点击【内容举报】进行投诉反馈!

相关文章

立即
投稿

微信公众账号

微信扫一扫加关注

返回
顶部