C++ .push()

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

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

  • Looking for an introduction to the theory behind programming? Master Python while learning data structures, algorithms, and more!
    • Includes 6 Courses
    • With Professional Certification
    • Beginner Friendly.
      75 hours
  • Learn C++ — a versatile programming language that’s important for developing software, games, databases, and more.
    • Beginner Friendly.
      11 hours

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

All contributors

Contribute to Docs

Learn C++ on Codecademy

  • Looking for an introduction to the theory behind programming? Master Python while learning data structures, algorithms, and more!
    • Includes 6 Courses
    • With Professional Certification
    • Beginner Friendly.
      75 hours
  • Learn C++ — a versatile programming language that’s important for developing software, games, databases, and more.
    • Beginner Friendly.
      11 hours