deque::max_size | public member function |
size_type max_size () const; |
Return maximum size
Returns the maximum number of elements that the deque container can hold.
This is the maximum potential size the container can reach due to system or library implementation limitations.
Parameters
noneReturn Value
The maximum number of elements a deque container can have as its content.Member type size_type is an unsigned integral type.
Example
// deque::max_size #include <iostream> #include <deque> using namespace std; int main () { unsigned int i; deque<int> mydeque; cout << "Enter number of elements: "; cin >> i; if (i<mydeque.max_size()) mydeque.resize(i); else cout << "That size exceeds the limit.\n"; return 0; } |
Here, member max_size is used to check beforehand whether the requested size will be allowed by member resize.
Complexity
Constant.See also
deque::size | Return size (public member function) |
deque::resize | Change size (public member functions) |