Namespaces
Variants
Views
Actions

Difference between revisions of "cpp/container/priority queue/size"

From cppreference.com
m (r2.7.3) (Robot: Adding de, es, fr, it, pt, zh)
m (Shorten template names. Use {{lc}} where appropriate.)
Line 1: Line 1:
{{page template|cpp/container/size ad|priority_queue}}
+
{{include page|cpp/container/size ad|priority_queue}}
  
 
[[de:cpp/container/priority queue/size]]
 
[[de:cpp/container/priority queue/size]]

Revision as of 19:34, 31 May 2013

 
 
 
 
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

#include <cassert>
#include <queue>
 
int main()
{
    std::priority_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) [edit]
(C++17)(C++20)
returns the size of a container or array
(function template) [edit]