.push()

The .push() method adds an element to the back of the queue.

Syntax

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

queueName.push(value);

The value must be the same data type as queueName.

Codebyte Example

The codebyte example below uses .push() to insert several even integers into the even 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