Java collection Queue Example

Java collection Queue Example

How can we use Queue in java collection?

View Answers

June 23, 2012 at 6:48 PM

import java.util.LinkedList;
import java.util.Queue;

public class MainDemo {

    public void queueExample() {

        Queue queue = new LinkedList();

        queue.add("Java");
        queue.add("DotNet");

        queue.offer("PHP");
        queue.offer("HTML");

        System.out.println("remove: " + queue.remove());
        System.out.println("element: " + queue.element());
        System.out.println("poll: " + queue.poll());
        System.out.println("peek: " + queue.peek());

    }

    public static void main(String[] args) {
        new MainDemo().queueExample();
    }
}

Output:-

remove: Java
element: DotNet
poll: DotNet
peek: PHP

Description:- In the above code, we have implemented Queue by its subclass LinkedList.We have created a method QueueExample.Using the add()and offer() method, we have added elements to LinkedList. Then, we have used remove() and poll() methods to remove elements.

element(): This method retrieves the head of the queue.

offer(E o): This inserts the specified element into the queue.

peek(): This method retrieves the head of this queue, returning null if this queue is empty.

poll(): This method retrieves and removes the head of this queue, or return null if this queue is empty.

remove(): This method retrieves and removes the head of this queue.









Related Tutorials/Questions & Answers:
Java collection Queue Example
Java collection Queue Example  How can we use Queue in java collection?   import java.util.LinkedList; import java.util.Queue; public class MainDemo { public void queueExample() { Queue queue = new
Collection : Queue Example
Collection : Queue Example In this tutorial we will describe implementation of Queue with example. Queue : A java.util.Queue interface is type... add(o) method of Collection and inserts the specified element into your queue
Advertisements
Java collection Stack example
Java collection Stack example  How to use Stack class in java collection?   The Stack class uses the First In Last Out(FILO) mechanism... :- -1 Description:- The above example demonstrates you the Stack class in java
Java Queue Example
Java Queue Example  how to use queue in java ?   import... void queueExample() { Queue queue = new LinkedList(); queue.add("Java"); queue.add("DotNet"); queue.offer("PHP
Java Collection iterator with example
. Example of Java Collection Iterator import java.util.ArrayList; import... The Java Collection Iterator is present at the highest level interface in the Collection framework. Iterator interface has methods for traversing
Java Queue
Java Queue       A queue... more about java queue go to the link:  ADS_TO_REPLACE_2 http:/www.roseindia.net/java/example/java/util/QueueImplement.shtml   
queue in java
queue in java  how to performe all queue operation?   Please visit the following link: Queue Example in Java
Collection : ArrayList Example
This tutorial contains description of Collection ArrayList with example
Collection : LinkedList Example
This tutorial contains description of Collection LinkedList with example
Queue in java
Queue in java In this section we will discuss about queue in java. Queue is a interface in java.util package of java. It holds the collection of data... and remove the head of this queue. Example : A Program to implement  queue
Collection Iterate Example
Collection Iterate Example     ... of interface Iterator in Java. The description of the code is given below... the hasNext() method through the following java program. True is return
Collection : Deque Example
.style1 { font-size: medium; } Collection : Deque Example In this tutorial we will describe implementation of Queue with example. Deque... of deque. Example : ADS_TO_REPLACE_4 package collection; import
Java Queue example
. In the following example we will implement Queue by its subclass LinkedList...() and poll() methods are used to remove elements. Following is the Java queue... queue = new LinkedList(); queue.add("Java"); queue.add("DotNet
Java Collection : NavigableSet Example
Java Collection : NavigableSet Example In this tutorial we are describing NavigableSet of collection Framework NavigableSet : NavigableSet interface... fromElement), tailSet(E fromElement, boolean inclusive). Example : Here is an example
Java Collection
Java Collection  What is the Collection interface
Java Collection : LinkedHashSet Example
Java Collection : LinkedHashSet Example This tutorial contains description of LinkedHashSet with example. LinkedHashSet : LinkedHashSet class is defined... of HashSet. Example :ADS_TO_REPLACE_1 package collection; import
Java Collection : TreeSet Example
Java Collection : TreeSet Example This tutorial contains description of  TreeSet with example. TreeSet  : TreeSet class is defined in java.util...).ADS_TO_REPLACE_2 Example : package collection; import java.util.TreeSet
Collection : ArrayList Example
Collection : ArrayList Example This tutorial contains description of Collection ArrayList with example. ArrayList : For ArrayList<E> import... of elements to add. For such condition, the Collection Framework provides
Java collection
Java collection  What are differences between Enumeration, ArrayList, Hashtable and Collections and Collection
Queue - Java Beginners
Queue  i'm working with queue on java. since im beginners im asking for additional example programs on queue using java to enhance my knowledge. thanks so much for the help! God bless
Collection in java
Collection in java  What are the meaning of the letters E,T,K and V that come in the collection concept
stack and queue - Java Beginners
://www.roseindia.net/java/example/java/util/StackImplement.shtml http://www.roseindia.net/java/example/java/util/QueueImplement.shtml Hope...stack and queue  write two different program in java 1.) stack 2
Java collection
Java collection  What are differences between Enumeration, ArrayList, Hashtable and Collections
Java Collection
Java Collection  What are Vector, Hashtable, LinkedList and Enumeration
Java collection
Java collection  What is relation between map and set
java collection
java collection  how do I use a treeset to print unique words
Filter collection in Java 8
, Example of Filter collection in Java 8 You can use the following code in Java 8...Filter collection in Java 8  Hi, I have following collection... the data not containing "Java". Thanks   Hi, We have huge collection
Java garbage collection
Java garbage collection  What is Garbage Collection and how to call it explicitly
Java Collection API - Java Tutorials
Java Collection API Collection was added to Java with J2SE 1.2 release. Collection framework is provided in 'java.util.package'. All collections... example, the method "add" of Collection Interface is implemented
Example to show Collection exception in java
Example to show Collection exception in java... of using exception class in java .Exceptions are the way in Java to indicate... describes  how to handle collection exceptions appropriately in your programs
Java collection-LinkedList
Java collection-LinkedList  How to use java collection-linked list ?   Example: import java.util.Iterator; import java.util.LinkedList; import java.util.List; public class LinkedListExample{ public static void
Java collection -Hashtable
Java collection -Hashtable   What is Hashtable in java collection?   Java collection -Hashtable;- The hashtable is used to store value...:- The above example demonstrates you the Map interface. Since Map is an interface, you
Collection classes in java
is the reason using java collection classes saved/stored the data/content.I don't understand, what is the idea using java collection classes in project. Or the data is stored in both database and java collection classes
Collection classes in java
is the reason using java collection classes saved/stored the data/content.I don't understand, what is the idea using java collection classes in project. Or the data is stored in both database and java collection classes
garbage collection - Java Beginners
. For read more information : http://www.roseindia.net/java/example/java/io... of memory.It identifies the objects that are no longer used by a program. A Java object is subject to garbage collection when it becomes unreachable to the program
Java Collection-TreeSet
Java Collection-TreeSet  What is TreeSet in Java Collection?   Example: import java.util.Iterator; import java.util.TreeSet; public... the elements of treeset using Iterator and display the elements.   Example
java: implement a class queue
java: implement a class queue  Implement a class Queue which supports the following operations: boolean isEmpty() Returns true if the queue...-empty queue without deleting it. int pop() Removes the item at the front of a non
Collection : Iterator Example
Collection : Iterator Example In this section we will discuss Iterator with example. Iterator : Iterator interface is a member of the Java Collection... the most recent element that was returned by next .ADS_TO_REPLACE_2 Example
collection
collection  As we know array holds the similar kind of elements, then in collection how toArray() method will convert the collection having different objects as elements to an array in java
Java collection LinkedHashSet
Java collection LinkedHashSet  How can we use LinkedHashSet in java collection?   import java.util.Iterator; import... Description:- The above example demonstrates you the Set interface. Since Set
Iterate java collection
with the reference of other collection which supports iterator() method Example... Collection is the top level interface of the Collection framework. Iterator interface has methods for traversing over the elements of the collection
Java collection HashSet
Java collection HashSet  How can we use HashSet in java program?   The hashSet class is used to create a collection and store it in a hash table. Each collection refer to a unique value. import java.util.Collections
java collection - Development process
java collection - creating and comparing lists using Java  How.... Comparing and Creating new list in Java Java Example code for creating... Example code for creating and comparing lists using Java. import java.util.
SortedMap (interface) example in java Collection Framework
SortedMap (interface) example in java Collection Framework       In this example I will show you how you can use SortedMap interface in your Java application
Collection of Large Number of Java Sample Programs and Tutorials
will learn how to iterate collection in java. A running example of java...Collection of Large Number of Java Sample Programs and Tutorials Java Collection Examples Java 6.0 New Features (Collection Framework
garbage collection implementation dependent java
garbage collection implementation dependent java  How a garbage collection works in Java
Java collection HashSet and TreeSet
Java collection HashSet and TreeSet   How can we used HashSet and TreeSet in the both Example?   import java.util.HashSet; import... except set1 element [A, B] Description:- The above example demonstrates you
Collection Framework - Java Beginners
Collection Framework  Pls explain the disadvantages of using collection framework as it was written in this forum ? It must cast to correct type. ? Cannot do compile time checking. I couldnot get in detail as to what
Collection
Collection  What is the exact difference between lagacy classes and collection classes? and Enumeration is possible on Collection classes
How to convert Collection to Array in Java?
How to convert Collection to Array in Java?  Hello, I have a collection object in data with data in it. How to convert Collection to Array in Java... to Array in Java. Here is the code for converting Collection to Array: String

Ads