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

STL

开发平台:

C/C++

  1. //文件名:CHAPTER8-19.cpp
  2. #pragma warning(disable:4786)
  3. #include <iostream>
  4. #include <string>
  5. #include <list>
  6. #if _MSC_VER > 1020   // if VC++ version is > 4.2
  7.    using namespace std;  // std c++ libs implemented in std
  8. #endif
  9. int main( )
  10. {
  11.    using namespace std;
  12.    list <int> c1;
  13.    c1.push_back( 10 );
  14.    if ( c1.empty( ) ) cout << "The list is empty." << endl;
  15.    else cout << "The list is not empty." << endl;
  16.    return 0;
  17. }