當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


C++ vector max_size()用法及代碼示例


向量::max_size()是C++ STL中的內置函數,該函數返回向量容器可以容納的最大元素數。

用法:

vector_name.max_size()

參數:該函數不接受任何參數。


返回值:該函數返回可容納到向量容器中的最大數字。

以下示例程序旨在說明上述函數:

// C++ program to illustrate the 
// vector::max_size() function 
#include <bits/stdc++.h> 
using namespace std; 
  
int main() 
{ 
    // initialize a vector 
    vector<int> vec; 
  
    // returns the max_size of vector 
    cout << "max_size of vector 1 = " << vec.max_size() << endl; 
  
    vector<int> vec1; 
  
    // returns the max_size of vector 
    cout << "max_size of vector 2 = " << vec1.max_size() << endl; 
    return 0; 
}
輸出:
max_size of vector 1 = 4611686018427387903
max_size of vector 2 = 4611686018427387903


相關用法


注:本文由純淨天空篩選整理自Twinkl Bajaj大神的英文原創作品 vector max_size() function in C++ STL。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。