|
queue::poppublic member function
void pop ( ); Delete next element Removes the next element in the queue, effectively reducing its size by one. The element removed is the "oldest" element in the queue whose value can be retrieved by calling member queue::front.This calls the removed element's destructor. This member function effectively calls the member function pop_front of the underlying container object. ParametersnoneReturn valuenoneExample
The example uses push to add a new elements to the queue, which are then popped out in the same order. ComplexityConstant.See also
|