Open In App

Queue.Dequeue Method in C#

Improve
Improve
Improve
Like Article
Like
Save Article
Save
Share
Report issue
Report

The Dequeue() method is used to returns the object at the beginning of the Queue. This method is similar to the Peek() Method. The only difference between Dequeue and Peek method is that Peek() method will not modify the Queue but Dequeue will modify. This method is an O(1) operation and comes under System.Collections namespace.

Syntax:

public virtual object Dequeue ();

Return value: It returns the object which is removed from the beginning of the Queue.

Exception: The method throws InvalidOperationException on calling empty queue, therefore always check that the total count of a queue is greater than zero before calling the Dequeue() method.

Below programs illustrate the use of the above-discussed method:




// C# Program to illustrate the use 
// of Queue.Dequeue Method
using System;
using System.Collections;
  
class GFG {
  
    // Main Method
    public static void Main()
    {
        Queue queue = new Queue();
        queue.Enqueue(3);
        queue.Enqueue(2);
        queue.Enqueue(1);
        queue.Enqueue("Four");
  
        Console.WriteLine("Number of elements in the Queue: {0}",
                                                    queue.Count);
  
        // Retrieveing top element of queue
        Console.WriteLine("Top element of queue is:");
        Console.WriteLine(queue.Dequeue());
  
        // printing the no of queue element 
        // after dequeue operation
        Console.WriteLine("Number of elements in the Queue: {0}",
                                                    queue.Count);
    }
}


Output:

Number of elements in the Queue: 4
Top element of queue is:
3
Number of elements in the Queue: 3




// C# Program to illustrate the use 
// of Queue.Dequeue Method
using System;
using System.Collections;
  
class GFG {
  
    // Main Method
    public static void Main()
    {
        Queue queue = new Queue();
  
        // Adding elements in Queue
        queue.Enqueue(2);
        queue.Enqueue("Four");
  
        Console.WriteLine("Number of elements in the Queue: {0}",
                                                    queue.Count);
  
        // Retrieveing top element of queue
        Console.WriteLine("Top element of queue is:");
        Console.WriteLine(queue.Dequeue());
  
        // printing the no. of queue element
        // after dequeue operation
        Console.WriteLine("Number of elements in the Queue: {0}",
                                                    queue.Count);
    }
}


Output:

Number of elements in the Queue: 2
Top element of queue is:
2
Number of elements in the Queue: 1

Reference:



Last Updated : 04 Feb, 2019
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads