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

STL

开发平台:

C/C++

  1. //文件名:CHAPTER8-30.cpp
  2. #include <list>
  3. #include <iostream>
  4. int main( ) 
  5. {
  6.    using namespace std; 
  7.    list <int> c1, c2;
  8.    c1.push_back( 1 );
  9.    c2.push_back( 2 );
  10.    if ( c1 != c2 )
  11.       cout << "The lists are not equal." << endl;
  12.    else
  13.       cout << "The lists are equal." << endl;
  14. return 0;
  15. }