1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
|
// forward_list::max_size
#include <iostream>
#include <sstream>
#include <forward_list>
int main ()
{
int myint;
std::string mystring;
std::forward_list<int> mylist;
std::cout << "Enter size: ";
std::getline ( std::cin, mystring );
std::stringstream ( mystring ) >> myint;
if ( myint <= mylist.max_size() ) mylist.resize(myint);
else std::cout << "That size exceeds the maximum.\n";
return 0;
}
| |