C++ .empty()

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

The .empty() method returns true if the size of the queue is 0. Otherwise, it returns false.

  • 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 .empty() method can be called on a queue using the following syntax:

queueName.empty();

Codebyte Example

The following codebyte example checks whether the temperatures queue is empty and prints "The queue is empty." if it is. Else, it prints "The queue is not empty.".

Code
Output
Loading...

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