- //文件名:CHAPTER8-13.cpp
- #include <iostream>
- #include <list>
- #if _MSC_VER > 1020 // if VC++ version is > 4.2
- using namespace std; // std c++ libs implemented in std
- #endif
- #include <list>
- #include <iostream>
- int main( )
- { list <int> c1;
- list <int>::size_type i;
- i = c1.max_size( );
- cout << "Maximum possible length of the list is " << i << "." << endl;
- }