Difference between revisions of "cpp/container/array/size"
From cppreference.com
m (1 revision: import content) |
(retemplatize) |
||
(9 intermediate revisions by 4 users not shown) | |||
Line 1: | Line 1: | ||
− | {{cpp/container/size|array}} | + | {{include page|cpp/container/size|array}} |
+ | |||
+ | {{langlinks|de|es|fr|it|ja|pt|ru|zh}} |
Latest revision as of 23:39, 17 June 2020
constexpr size_type size() const noexcept; |
(since C++11) | |
Returns the number of elements in the container, i.e. std::distance(begin(), end()).
Contents |
[edit] Parameters
(none)
[edit] Return value
The number of elements in the container.
[edit] Complexity
Constant.
[edit] Example
The following code uses size
to display the number of elements in a std::array:
Run this code
#include <array> #include <iostream> int main() { std::array<int, 4> nums{1, 3, 5, 7}; std::cout << "nums contains " << nums.size() << " elements.\n"; }
Output:
nums contains 4 elements.
[edit] See also
checks whether the container is empty (public member function) | |
returns the maximum possible number of elements (public member function) | |
(C++17)(C++20) |
returns the size of a container or array (function template) |