Namespaces
Variants
Views
Actions

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

From cppreference.com
< cpp‎ | container‎ | deque
m (Add link to edit the included template)
m (langlinks)
 
(2 intermediate revisions by one user not shown)
Line 1: Line 1:
{{page template|cpp/container/size|deque}}
+
{{include page|cpp/container/size|deque}}
  
[[es:cpp/container/deque/size]]
+
{{langlinks|de|es|fr|it|ja|pl|pt|ru|zh}}
[[it:cpp/container/deque/size]]
+
[[ru:cpp/container/deque/size]]
+

Latest revision as of 17:52, 11 November 2021

 
 
 
 
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::deque:

#include <deque>
#include <iostream>
 
int main()
{ 
    std::deque<int> 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]
changes the number of elements stored
(public member function) [edit]
(C++17)(C++20)
returns the size of a container or array
(function template) [edit]