Namespaces
Variants
Views
Actions

Difference between revisions of "cpp/container/array/size"

From cppreference.com
< cpp‎ | container‎ | array
(merge noexcept & C++11/14)
(retemplatize)
 
Line 1: Line 1:
{{cpp/container/array/title | size}}
+
{{include page|cpp/container/size|array}}
{{cpp/container/array/navbar}}
+
{{dcl begin}}
+
{{dcl | since=c++11 |
+
constexpr size_type size() const noexcept;
+
}}
+
{{dcl end}}
+
  
Returns the number of elements in the container, i.e. {{c|std::distance(begin(), end())}}.
+
{{langlinks|de|es|fr|it|ja|pt|ru|zh}}
 
+
===Parameters===
+
(none)
+
 
+
===Return value===
+
The number of elements in the container.
+
 
+
===Complexity===
+
Constant.
+
 
+
===Example===
+
{{example
+
| The following code uses {{tt|size}} to display the number of elements in a {{lc|std::array}}:
+
| 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.
+
}}
+
 
+
===See also===
+
{{dsc begin}}
+
{{dsc inc | cpp/container/dsc empty |array}}
+
{{dsc inc | cpp/container/dsc max_size |array}}
+
{{dsc end}}
+
 
+
[[de:cpp/container/array/size]]
+
[[es:cpp/container/array/size]]
+
[[fr:cpp/container/array/size]]
+
[[it:cpp/container/array/size]]
+
[[ja:cpp/container/array/size]]
+
[[pt:cpp/container/array/size]]
+
[[ru:cpp/container/array/size]]
+
[[zh:cpp/container/array/size]]
+

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:

#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) [edit]
returns the maximum possible number of elements
(public member function) [edit]
(C++17)(C++20)
returns the size of a container or array
(function template) [edit]