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

STL

开发平台:

C/C++

  1. //文件名:CHAPTER10-15.cpp
  2. #include <map>
  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. void main( )
  8. {
  9.    map <int, int> m1;
  10.    map <int, int> :: size_type i;
  11.    i = m1.max_size( );
  12.    cout << "The maximum possible length "
  13.         << "of the map is " << i << "."
  14.         << endl << "(Magnitude is machine specific.)";
  15. }