public member function
<queue>
std::queue::empty
Test whether container is empty
This member function effectively calls member empty of the underlying container object.
Parameters
noneReturn Value
true if the underlying container's size is 0, false otherwise.Example
|
|
The example initializes the content of the queue to a sequence of numbers (form 1 to 10). It then pops the elements one by one until it is empty and calculates their sum.
Output:
Complexity
Constant (calling empty on the underlying container).Data races
The container is accessed.Exception safety
Provides the same level of guarantees as the operation performed on the container (no-throw guarantee for standard container types).See also
- queue::size
- Return size (public member function)