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

STL

开发平台:

C/C++

  1. //文件名:CHAPTER2-23.cpp
  2. #include <string>
  3. #include <iostream>
  4. #include <algorithm>
  5. using namespace std;
  6. int main() 
  7. {   
  8.   string s(10u, ' ');           // Create a string of ten blanks.
  9.   const char* A = "this is a test";
  10.   s += A;
  11.   cout << "s = " << (s + 'n');
  12.   cout << "As a null-terminated sequence: " << s.c_str() << endl;
  13.   cout << "The sixteenth character is " << s[15] << endl;
  14.   reverse(s.begin(), s.end());
  15.   cout << s<<endl;
  16.   return 0;
  17. }