|
multiset::max_sizepublic member function
size_type max_size () const; Return maximum size Returns the maximum number of elements that the multiset container object can hold.This is the maximum potential size the container can reach due to system or library implementation limitations. ParametersnoneReturn ValueThe maximum number of elements a multiset container can have as its content.Member type size_type is an unsigned integral type. Example
Here, member max_size is used to check beforehand whether the multiset will allow for 1000 elements to be inserted. ComplexityConstant.See also
|