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

STL

开发平台:

C/C++

  1. //文件名:CHAPTER9-21.cpp
  2. #include <set>
  3. #include <iostream>
  4. #if _MSC_VER > 1020   // if VC++ version is > 4.2
  5.    using namespace std;  // std c++ libs implemented in std
  6. #endif
  7. int main( )
  8. {  set <int> s1;
  9.    s1.insert( 1 );
  10.    s1.insert( 2 );
  11.    cout << "The size of the set is initially " << s1.size( )<< "." << endl;
  12.    s1.clear( );
  13.    cout << "The size of the set after clearing is "<< s1.size( ) << "." << endl;
  14. }