.pop()

Christine_Yang's avatar
Published May 23, 2022Updated Dec 21, 2022
Contribute to Docs

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...

All contributors

Contribute to Docs

Learn C++ on Codecademy