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


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


C++ vector::size() 函數

vector::size() 是 "vector" 頭文件的庫函數,用於獲取向量的大小,返回向量中元素的總數。

注意:要使用矢量,請包括<vector>標題。

vector::size() 函數的語法

    vector::size();

參數: none——它什麽都不接受。

返回值: size_type– 它以無符號整數類型返回大小。

例:

    Input:
    vector<int> vector1{ 1, 2, 3, 4, 5 };

    Function call:
    cout << vector1.size();

    Output:
    5

C++程序演示vector::size()函數的例子

//C++ STL program to demonstrate example of
//vector::size() function

#include <iostream>
#include <vector>
using namespace std;

int main()
{
    vector<int> v1;

    //printing the size of the vector
    cout << "Total number of elements:" << v1.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 size of the vector
    cout << "Total number of elements:" << v1.size() << endl;

    return 0;
}

輸出

Total number of elements:0
Total number of elements:5

參考:C++ vector::size()



相關用法


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