std::queue<T,Container>:: size
From cppreference.com
C++
Containers library
Sequence | ||||
(C++11)
|
||||
(C++26)
|
||||
(C++11)
|
||||
Associative | ||||
Unordered associative | ||||
(C++11)
|
||||
(C++11)
|
||||
(C++11)
|
||||
(C++11)
|
||||
Adaptors | ||||
(C++23)
|
||||
(C++23)
|
||||
(C++23)
|
||||
(C++23)
|
||||
Views | ||||
(C++20)
|
||||
(C++23)
|
||||
Tables | ||||
Iterator invalidation | ||||
Member function table | ||||
Non-member function table |
std::queue
Member functions | ||||
Element access | ||||
Capacity | ||||
queue::size
|
||||
Modifiers | ||||
(C++23)
|
||||
(C++11)
|
||||
(C++11)
|
||||
Non-member functions | ||||
(C++11)
|
||||
Helper classes | ||||
(C++11)
|
||||
(C++23)
|
||||
Deduction guides (C++17) |
size_type size
(
)
const
;
|
||
Returns the number of elements in the container adaptor. Equivalent to:
return
c
.
size
(
)
.
Parameters
(none)
Return value
The number of elements in the container adaptor.
Complexity
Constant.
Example
Run this code
#include <cassert> #include <queue> int main() { std::queue<int> queue; assert(queue.size() == 0); const int count = 8; for (int i = 0; i != count; ++i) queue.push(i); assert(queue.size() == count); }
See also
checks whether the container adaptor is empty
(public member function) |
|
(C++17)
(C++20)
|
returns the size of a container or array
(function template) |
Retrieved from "
https://en.cppreference.com/mwiki/index.php?title=cpp/container/queue/size&oldid=135387
"