Click here to watch in Youtube :
https://www.youtube.com/watch?v=VrNmky2uRDE&list=UUhwKlOVR041tngjerWxVccw
DequeExample.java
Output
https://www.youtube.com/watch?v=VrNmky2uRDE&list=UUhwKlOVR041tngjerWxVccw
DequeExample.java
import java.util.Deque; import java.util.LinkedList; /* * Example of element() and peek() methods. */ public class DequeExample { public static void main(String[] args) { Deque<Integer> deque = new LinkedList<Integer>(); deque.add(200); deque.add(300); deque.add(400); deque.add(500); System.out.println("deque : " + deque + "\n"); /* * Retrieves, but does not remove, the head of the queue represented by * this deque (in other words, the first element of this deque). This * method differs from peek only in that it throws an exception if this * deque is empty. */ Integer element = deque.element(); System.out.println("element : " + element); System.out.println("deque : " + deque + "\n"); /* * Retrieves, but does not remove, the head of the queue represented by * this deque (in other words, the first element of this deque), or * returns null if this deque is empty. */ element = deque.peek(); System.out.println("element : " + element); System.out.println("deque : " + deque + "\n"); } }
deque : [200, 300, 400, 500] element : 200 deque : [200, 300, 400, 500] element : 200 deque : [200, 300, 400, 500]
https://sites.google.com/site/javaee4321/java-collections/DequeDemoElementPeek.zip?attredirects=0&d=1
See also:
No comments:
Post a Comment