The Java.util.ArrayDeque.size() method in Java is used to get the size of the Deque or the number of elements present in the Deque.
Syntax:
Array_Deque.size()
Parameters: The method does not take any parameter.
Return Value: The method returns the size or the number of elements present in the Deque.
Below programs illustrate the Java.util.ArrayDeque.size() 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( "ArrayDeque: " + de_que);
System.out.println( "The size is: " + de_que.size());
}
}
|
Output:
ArrayDeque: [Welcome, To, Geeks, 4, Geeks]
The size is: 5
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 );
System.out.println( "ArrayDeque: " + de_que);
System.out.println( "The size is: " + de_que.size());
}
}
|
Output:
ArrayDeque: [10, 15, 30]
The size is: 3
Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape,
GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out -
check it out now!