104
C++ Queue size() Function
C++ Queue size() function returns the number of queue elements. The number of elements in the queue is an actual representation of the size, and the size value is given by this function.
Syntax
Parameters
The function does not take any parameter, and it just returns the queue size.
Return value
The number of elements in the queue is returned. In other words, the size of the queue is given.
Example 1
Output:
0.size: 0 1.size: 5 2.size: 4
Example 2
Output:
Size of queue is 4
Complexity
The complexity is constant.
Data races
The function accesses the container. By accessing the container the size of the queue is evaluates.
Exception Safety
Guarantee as equivalent to the operations that are performed on the underlying container object is provided.
Next TopicC++ Queue