The Java.util.ArrayDeque.offer(Object element) method in Java is used to add a specific element at the end of the Deque. The function is similar to the offerLast() method of ArrayDeque in Java.
Syntax:
Array_Deque.offer(Object element)
Parameters: The parameter element is of the type ArrayDeque and refers to the element to be added at the end of the Deque.
Return Value: The function returns True if the element is successfully added into the deque else it returns false.
Exceptions: The method throws NullPointerException if the passed parameter is NULL.
Below programs illustrate the Java.util.ArrayDeque.offer() method:
Program 1: Adding String elements into the Deque.
import java.util.*;
public class ArrayDequeDemo {
public static void main(String args[])
{
Deque<String> de_que = new ArrayDeque<String>();
de_que.add( "Welcome" );
de_que.add( "To" );
de_que.add( "Geeks" );
de_que.add( "4" );
de_que.add( "Geeks" );
System.out.println( "Initial Deque: " + de_que);
de_que.offer( "Hello" );
de_que.offer( "World" );
System.out.println( "Final Deque: " + de_que);
}
}
|
Output:
Initial Deque: [Welcome, To, Geeks, 4, Geeks]
Final Deque: [Welcome, To, Geeks, 4, Geeks, Hello, World]
Program 2: Adding Integer elements into the Deque.
import java.util.*;
public class ArrayDequeDemo {
public static void main(String args[])
{
Deque<Integer> de_que = new ArrayDeque<Integer>();
de_que.add( 10 );
de_que.add( 15 );
de_que.add( 30 );
de_que.add( 20 );
de_que.add( 5 );
System.out.println( "Initial Deque: " + de_que);
de_que.offer( 1658 );
de_que.offer( 2458 );
System.out.println( "Final Deque: " + de_que);
}
}
|
Output:
Initial Deque: [10, 15, 30, 20, 5]
Final Deque: [10, 15, 30, 20, 5, 1658, 2458]
Feeling lost in the vast world of Backend Development? It's time for a change! Join our
Java Backend Development - Live Course and embark on an exciting journey to master backend development efficiently and on schedule.
What We Offer:
- Comprehensive Course
- Expert Guidance for Efficient Learning
- Hands-on Experience with Real-world Projects
- Proven Track Record with 100,000+ Successful Geeks
Last Updated :
10 Dec, 2018
Like Article
Save Article