C++ 向量::max_size() 函数
vector::max_size() 是 "vector" 头文件的库函数,用于获取向量的最大大小,返回向量可以存储的元素总数。
注意:要使用矢量,请包括<vector>
标题。
vector::max_size() 函数的语法
vector::max_size();
参数: none
——它什么都不接受。
返回值: size_type
– 它以无符号整数类型返回向量的最大大小。
例:
Input: vector<int> vector1{ 1, 2, 3, 4, 5 }; Function call: cout << vector1.max_size(); Output: 4611686018427387903
演示vector::max_size()函数示例的C++程序
//C++ STL program to demonstrate example of
//vector::max_size() function
#include <iostream>
#include <vector>
using namespace std;
int main()
{
vector<int> v1;
//printing the max_size of the vector
cout << "Maximum number of elements that can be stored:";
cout << v1.max_size() << endl;
//pushing elements
v1.push_back(10);
v1.push_back(20);
v1.push_back(30);
v1.push_back(40);
v1.push_back(50);
//printing the max_size of the vector
cout << "Maximum number of elements that can be stored:";
cout << v1.max_size() << endl;
return 0;
}
输出
Maximum number of elements that can be stored:4611686018427387903 Maximum number of elements that can be stored:4611686018427387903
参考:C++ 向量::max_size()
相关用法
- C++ vector::rbegin()用法及代码示例
- C++ vector::pop_back()用法及代码示例
- C++ vector::crend()用法及代码示例
- C++ vector::push_back()用法及代码示例
- C++ vector::emplace_back用法及代码示例
- C++ vector::at()用法及代码示例
- C++ vector::swap()用法及代码示例
- C++ vector::shrink_to_fit()用法及代码示例
- C++ vector::cbegin()用法及代码示例
- C++ vector::back()用法及代码示例
- C++ vector::assign()用法及代码示例
- C++ vector::begin()用法及代码示例
- C++ vector::cend()用法及代码示例
- C++ vector::operator[]用法及代码示例
- C++ vector::clear()用法及代码示例
- C++ vector::cbegin()、vector::cend()用法及代码示例
- C++ vector::empty()用法及代码示例
- C++ vector::front()、vector::back()用法及代码示例
- C++ vector::at()、vector::swap()用法及代码示例
- C++ vector::crbegin()用法及代码示例
注:本文由纯净天空筛选整理自 vector::max_size() function with example in C++ STL。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。