• Class / Function / Type

      std::
    • Header file

      <>
    • Other / All

    最終更新日時(UTC):
    が更新

    履歴 編集

    function
    <vector>

    std::vector::size

    size_type size() const;                    // (1) C++03
    size_type size() const noexcept;           // (1) C++11
    constexpr size_type size() const noexcept; // (1) C++20
    

    概要

    コンテナの要素数を取得する。

    戻り値

    vectorオブジェクトに含まれる要素数を返す。

    例外

    投げない

    計算量

    定数時間

    備考

    a.size()distance(a.begin(), a.end()) は同じ結果になる。

    #include <iostream>
    #include <vector>
    
    int main()
    {
      std::vector<int> v = {3, 1, 4, 5, 2};
    
      std::size_t size = v.size();
      std::cout << size << std::endl;
    }
    

    出力

    5
    

    参照