Wednesday 12 November 2014

Java : Collection Framework : Deque (Add element in the last)


Click here to watch in Youtube :
https://www.youtube.com/watch?v=482SgrrZEPg&list=UUhwKlOVR041tngjerWxVccw

DequeExample.java
import java.util.Deque;
import java.util.LinkedList;

/*
 *  Example of addLast(E e) and offerLast(E e) methods.
 */
public class DequeExample
{

    public static void main( String[] args )
    {
        Deque<Integer> deque = new LinkedList<Integer>();
        deque.add(100);
        deque.add(200);
        deque.add(300);

        System.out.println("deque : " + deque + "\n");

        /*
         * Inserts the specified element at the end of this deque if it is
         * possible to do so immediately without violating capacity
         * restrictions. When using a capacity-restricted deque, it is generally
         * preferable to use method offerLast(E).
         */
        deque.addLast(50);

        System.out.println("deque : " + deque + "\n");

        /*
         * Inserts the specified element at the end of this deque unless it
         * would violate capacity restrictions. When using a capacity-restricted
         * deque, this method is generally preferable to the addLast(E) method,
         * which can fail to insert an element only by throwing an exception.
         */
        boolean isAdded = deque.offerLast(10);
        System.out.println("isAdded : " + isAdded);
        System.out.println("deque : " + deque);

    }
}

Output
deque : [100, 200, 300]

deque : [100, 200, 300, 50]

isAdded : true
deque : [100, 200, 300, 50, 10]


To Download DequeDemoAddOfferLast Project Click the below link

https://sites.google.com/site/javaee4321/java-collections/DequeDemoAddOfferLast.zip?attredirects=0&d=1

See also:

  • All JavaEE Viedos Playlist
  • All JavaEE Viedos
  • Servlets Tutorial
  • All Design Patterns Links
  • JDBC Tutorial
  • No comments:

    Post a Comment