.pop()

The .pop() method removes the element at the front of the queue. This will be the oldest element in the queue or the element which was added the earliest.

Syntax

The .pop() method is called on a queue using the following syntax:

queueName.pop();

Codebyte Example

The codebyte example below shows .pop() being used on the utensils queue:

Code
Output
Loading...

Contributors

Interested in helping build Docs? Read the Contribution Guide or share your thoughts in this feedback form.

Learn C++ on Codecademy