Namespaces
Variants
Views
Actions

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

From cppreference.com
< cpp‎ | container‎ | array
m (Add link to edit the included template)
m (r2.7.3) (Robot: Adding de, es, fr, it, ja, pt, ru, zh)
Line 1: Line 1:
 
{{page template|cpp/container/size|array}}
 
{{page template|cpp/container/size|array}}
 +
 +
[[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]]

Revision as of 21:07, 2 November 2012

 
 
 
 
constexpr size_type size() const noexcept;
(since C++11)

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

Contents

Parameters

(none)

Return value

The number of elements in the container.

Complexity

Constant.

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.

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]