CHAPTER2-18.cpp
上传用户:fjc899
上传日期:2007-07-03
资源大小:187k
文件大小:1k
源码类别:

STL

开发平台:

C/C++

  1. //文件名:CHAPTER2-18.cpp
  2. #include <iostream>
  3. #include <string>
  4. using namespace std;
  5. void main()
  6. {
  7.     string TestString = "1111122222333334444455555";
  8. //采用length()返回字符串长度
  9.     cout << TestString << "n  size: " << TestString.length() << endl; 
  10.     TestString.resize(5); 
  11. //采用size()返回字符串长度
  12.     cout << TestString << "n  size: " << TestString.size() << endl;
  13.     TestString.resize(10);
  14.     cout << TestString << "n  size: " << TestString.size() << endl;
  15.     TestString.resize(15,'6');
  16.     cout << TestString << "n  size: " << TestString.size() << endl;
  17. }