std::array::max_size
STD::数组::max[医]大小
constexpr size_type max_size( | | (since C++11) (until C++14) |
---|---|---|
constexpr size_type max_size() const; | | (since C++14) |
返回容器由于系统或库实现限制而能够容纳的最大元素数,即std::distance
(begin(), end())
最大的集装箱。
参数
%280%29
返回值
最大元素数。
例外
noexcept
规格:
noexcept
复杂性
常量。
注记
因为每个std::array<T, N>是一个固定大小的容器,由max_size等号N%28,也是由size29%。
例
二次
#include <iostream>
#include <array>
int main()
{
std::array<char, 10> s;
std::cout << "Maximum size of a 'array' is " << s.max_size() << "\n";
}
二次
可能的产出:
二次
Maximum size of a 'array' is 10
二次
另见
size | returns the number of elements (public member function) |
---|
© cppreference.com
在CreativeCommonsAttribution下授权-ShareAlike未移植许可v3.0。