Java Deque peek () MethodThe peek() method of Java Deque Interface is used to retrieve but not to remove the head of the deque. The method may return null if the given deque is empty. Specified by:
Syntax:Parameter:NA Return:The above method is used to return the head of the deque which is represented by the queue. On the other hand, if the deque is empty, the method may return null. Example 1Test it NowOutput: The first character is given as : J The deque is : J A V A T P O I N T Example 2Test it NowOutput: The first string is given as : Hello The deque is : [Hello, , World] Example 3Test it NowOutput: The first long value is given as : 88 The resultant deque is : [88, 78, 67] Next TopicJava Deque |
We provides tutorials and interview questions of all technology like java tutorial, android, java frameworks
G-13, 2nd Floor, Sec-3, Noida, UP, 201301, India