Tuesday, February 10, 2026
HomeLanguagesJavaLinkedBlockingDeque put() method in Java

LinkedBlockingDeque put() method in Java

The put(E e) method of LinkedBlockingDeque inserts the specified element into the queue represented by this deque (in other words, at the tail of this deque). If the Deque is capacity restricted, then it will wait for the space to become available.

Syntax:

public void put(E e)

Parameters: This method accepts a mandatory parameter e which is the element to be inserted at the end of the LinkedBlockingDeque.

Returns: This method does not return anything.

Exceptions: The program throws two exceptions as shown below:

  • NullPointerException – if the specified element is null
  • InterruptedException – if interrupted while waiting

Below programs illustrate put() method of LinkedBlockingDeque:

Program 1:




// Java Program Demonstrate put()
// method of LinkedBlockingDeque
  
import java.util.concurrent.LinkedBlockingDeque;
import java.util.*;
  
public class GFG {
    public static void main(String[] args)
        throws InterruptedException
    {
  
        // create object of LinkedBlockingDeque
        LinkedBlockingDeque<Integer> LBD
            = new LinkedBlockingDeque<Integer>();
  
        // Add numbers to end of LinkedBlockingDeque
        LBD.put(7855642);
        LBD.put(35658786);
        LBD.put(5278367);
        LBD.put(74381793);
  
        // print Dequeue
        System.out.println("Linked Blocking Deque: " + LBD);
    }
}


Output:

Linked Blocking Deque: [7855642, 35658786, 5278367, 74381793]

Program 2:




// Java Program Demonstrate put()
// method of LinkedBlockingDeque
// throwing NullPointerException
  
import java.util.concurrent.LinkedBlockingDeque;
import java.util.*;
  
public class GFG {
    public static void main(String[] args)
        throws InterruptedException
    {
  
        // create object of LinkedBlockingDeque
        LinkedBlockingDeque<Integer> LBD
            = new LinkedBlockingDeque<Integer>();
  
        // Add numbers to end of LinkedBlockingDeque
        LBD.put(7855642);
        LBD.put(35658786);
        LBD.put(5278367);
  
        // throws an exception
        LBD.put(null);
  
        // print Dequeue
        System.out.println("Linked Blocking Deque: " + LBD);
    }
}


Output:

Exception in thread "main" java.lang.NullPointerException
    at java.util.concurrent.LinkedBlockingDeque.putLast(LinkedBlockingDeque.java:390)
    at java.util.concurrent.LinkedBlockingDeque.put(LinkedBlockingDeque.java:649)
    at GFG.main(GFG.java:22)

Program 3:




// Java Program Demonstrate put()
// method of LinkedBlockingDeque
// when capacity exceeded
  
import java.util.concurrent.LinkedBlockingDeque;
import java.util.*;
  
public class GFG {
    public static void main(String[] args)
        throws InterruptedException
    {
  
        // create object of LinkedBlockingDeque
        LinkedBlockingDeque<Integer> LBD
            = new LinkedBlockingDeque<Integer>(3);
  
        // Add numbers to end of LinkedBlockingDeque
        LBD.put(7855642);
        LBD.put(35658786);
        LBD.put(5278367);
  
        // throws an exception
        LBD.put(4356789);
  
        // print Dequeue
        System.out.println("Linked Blocking Deque: " + LBD);
    }
}


Output:

Runtime Errors:
Max real time limit exceeded due to either by heavy load on server or by using sleep function

Reference: https://docs.oracle.com/javase/8/docs/api/java/util/concurrent/LinkedBlockingDeque.html#put-E-

Dominic
Dominichttp://wardslaus.com
infosec,malicious & dos attacks generator, boot rom exploit philanthropist , wild hacker , game developer,
RELATED ARTICLES

1 COMMENT

Most Popular

Dominic
32494 POSTS0 COMMENTS
Milvus
126 POSTS0 COMMENTS
Nango Kala
6867 POSTS0 COMMENTS
Nicole Veronica
11994 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12087 POSTS0 COMMENTS
Shaida Kate Naidoo
7003 POSTS0 COMMENTS
Ted Musemwa
7243 POSTS0 COMMENTS
Thapelo Manthata
6953 POSTS0 COMMENTS
Umr Jansen
6944 POSTS0 COMMENTS