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

STL

开发平台:

C/C++

  1. //文件名:CHAPTER8-23.cpp
  2. #include <iostream>
  3. #include <list>
  4. #if _MSC_VER > 1020   // if VC++ version is > 4.2
  5.    using namespace std;  // std c++ libs implemented in std
  6. #endif
  7. typedef list<char >  CHARLIST;
  8. void print_contents (CHARLIST  list, char*);
  9. int main()
  10. {
  11.     CHARLIST  a(3,'A'); //定义了变量a,内容是3个'A'
  12.     CHARLIST  b(4,'B'); //定义了变量b,内容是4个'B'
  13.     print_contents (a,"a");
  14.     print_contents (b,"b");
  15.     a.swap(b); //内容互换
  16.     print_contents (a,"a");
  17.     print_contents (b,"b");
  18.     a.swap(b);//内容换回来
  19.     print_contents (a,"a");
  20.     print_contents (b,"b");
  21.     a.assign(b.begin(),b.end());
  22.     print_contents (a,"a");
  23.    CHARLIST::iterator itor=b.begin();
  24.    itor++;
  25. itor++;
  26.     a.assign(b.begin(),itor);
  27.     print_contents (a,"a");
  28.     a.assign(3,'Z');
  29.     print_contents (a,"a");
  30.    return 0;
  31. }
  32. //下面是显示函数源代码
  33. void print_contents (CHARLIST  list, char *name)
  34. {
  35.     CHARLIST::iterator plist;
  36.     cout <<"The contents of "<< name <<" : ";
  37.     for(plist = list.begin(); plist != list.end(); plist++)
  38.     { cout << *plist <<" " ; }
  39.     cout<<endl;
  40. }