std::{{{1}}}::max_size
From cppreference.com
size_type max_size() const noexcept; |
(since {std}) | |
Returns the maximum number of elements the container is able to hold due to system or library implementation limitations, i.e. std::distance(begin(), end()) for the largest container.
Contents |
Parameters
(none)
Return value
Maximum number of elements.
Complexity
Constant.
Notes
This value typically reflects the theoretical limit on the size of the container, at most std::numeric_limits<difference_type>::max(). At runtime, the size of the container may be limited to a value smaller than max_size()
by the amount of RAM available.
Example
Run this code
#include <iostream> #include <{{{1}}}> const char* separate(unsigned long long n) { static char buf[64]; int i{sizeof(buf) - 1}, j{}; buf[i] = '\0'; do { buf[--i] = '0' + (n % 10); if (j++ % 3 == 2) buf[--i] = '\''; } while (n /= 10); return buf + i + (buf[i] == '\'' ? 1 : 0); } int main() { std::{{{1}}}<char> s; std::cout << "Maximum size of a '{{{1}}}' is " << separate(s.max_size()) << "\n" << "s.max_size() = " << s.max_size() << std::endl; }
Possible output:
Maximum size of a '{{{1}}}' is
See also
returns the number of elements (public member function of std::{{{1}}} )
|