Skip to main content

std::vector size() method

// prism-push-types:size_type
// Const version only
constexpr size_type size() const noexcept;

Returns the number of elements in the container, i.e. std::distance(begin(), end()).

Parameters

(none)

Return value

The number of elements in the container.

Complexity

Constant - O(1).

Example

Main.cpp
#include <array>
#include <iostream>

int main()
{
std::vector<int, 4> nums {1, 3, 5, 7};

std::cout << "nums contains " << nums.size() << " elements.\n";
}
Output
nums contains 4 elements.
This article originates from this CppReference page. It was likely altered for improvements or editors' preference. Click "Edit this page" to see all changes made to this document.
Hover to see the original license.

std::vector size() method

// prism-push-types:size_type
// Const version only
constexpr size_type size() const noexcept;

Returns the number of elements in the container, i.e. std::distance(begin(), end()).

Parameters

(none)

Return value

The number of elements in the container.

Complexity

Constant - O(1).

Example

Main.cpp
#include <array>
#include <iostream>

int main()
{
std::vector<int, 4> nums {1, 3, 5, 7};

std::cout << "nums contains " << nums.size() << " elements.\n";
}
Output
nums contains 4 elements.
This article originates from this CppReference page. It was likely altered for improvements or editors' preference. Click "Edit this page" to see all changes made to this document.
Hover to see the original license.