Difference between revisions of "cpp/container/queue/size"
From cppreference.com
m (Add link to edit the included template) |
m (r2.7.3) (Robot: Adding de, es, fr, ja, pt, zh) |
||
Line 1: | Line 1: | ||
{{page template|cpp/container/size ad|queue}} | {{page template|cpp/container/size ad|queue}} | ||
+ | [[de:cpp/container/queue/size]] | ||
+ | [[es:cpp/container/queue/size]] | ||
+ | [[fr:cpp/container/queue/size]] | ||
[[it:cpp/container/queue/size]] | [[it:cpp/container/queue/size]] | ||
+ | [[ja:cpp/container/queue/size]] | ||
[[pl:cpp/container/queue/size]] | [[pl:cpp/container/queue/size]] | ||
+ | [[pt:cpp/container/queue/size]] | ||
[[ru:cpp/container/queue/size]] | [[ru:cpp/container/queue/size]] | ||
+ | [[zh:cpp/container/queue/size]] |
Revision as of 11:20, 2 November 2012
size_type size() const; |
||
Returns the number of elements in the container adaptor. Equivalent to: return
c
.size().
Contents |
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) |