Przejdź do głównej zawartości

std::array size() method

// 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.

Example

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

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

std::cout << "nums contains " << nums.size() << " elements.\n";
}
Possible 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::array size() method

// 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.

Example

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

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

std::cout << "nums contains " << nums.size() << " elements.\n";
}
Possible 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.