java peek方法_Java ArrayDeque peek()方法与示例

java peek方法

ArrayDeque类peek()方法 (ArrayDeque Class peek() method)

  • peek() Method is available in java.lang package.

    peek()方法在java.lang包中可用。

  • peek() Method is used to return the head element of the queue denoted by this deque but without removing the element.

    peek()方法用于返回此双端队列表示的队列的头元素,但不删除该元素。

  • peek() Method is a non-static method, it is accessible with the class object only and if we try to access the method with the class name then we will get an error.

    peek()方法是一个非静态方法,只能通过类对象访问,如果尝试使用类名称访问该方法,则会收到错误消息。

  • peek() Method does not throw an exception at the time retrieving the head element of this deque.

    peek()方法在检索此双端队列的head元素时不会引发异常。

Syntax:

句法:

    public T peek();

Parameter(s):

参数:

  • It does not accept any parameter.

    它不接受任何参数。

Return value:

返回值:

The return type of the method is T, it returns the head element denoted by this deque otherwise it returns null when this deque is "blank".

方法的返回类型为T ,它返回此双端队列表示的head元素,否则当此双端队列为“空白”时返回null。

Example:

例:

// Java program to demonstrate the example 
// of T peek() method of ArrayDeque 
import java.util.*;
public class PeekOfArrayDeque {
public static void main(String[] args) {
// Creating an ArrayDeque with initial capacity of
// storing elements
Deque < String > d_queue = new ArrayDeque < String > (10);
// By using add() method to add elements
// in ArrayDeque
d_queue.add("C");
d_queue.add("C++");
d_queue.add("Java");
d_queue.add("Php");
d_queue.add("DotNet");
// Display Deque Elements
System.out.println("d_queue before peek(): ");
System.out.println("ArrayDeque Elements = " + d_queue);
System.out.println();
// By using peek() method to return the
// element at the first position in ArrayDeque
String ele = d_queue.peek();
// Display Returned Elements
System.out.println("d_queue.peek() : " + ele);
}
}

Output

输出量

d_queue before peek(): 
ArrayDeque Elements = [C, C++, Java, Php, DotNet]d_queue.peek() : C

翻译自: https://www.includehelp.com/java/arraydeque-peek-method-with-example.aspx

java peek方法

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/541159.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

中怎么撤回消息_微信消息撤回也能看到,这个开源神器牛x!语音、图片、文字都支持!...

1.前言 微信在2014年的时候&#xff0c;发布的v5.3.1 版本中推出了消息撤回功能&#xff0c;用户可以选择撤回 2 分钟内发送的最后一条信息。现在很多即时通讯的软件都有撤回这个功能。腾讯为了照顾手残党&#xff0c;在微信和QQ中都加入了【消息撤回】的功能。但是这个功能对于…

ntce服务器不稳定,当心!你的教师资格证成绩失效了!| 服务

原标题&#xff1a;当心&#xff01;你的教师资格证成绩失效了&#xff01;| 服务湖南的小王同学资格证笔试考了两次才全部通过&#xff0c;想着好好歇歇&#xff0c;结果就误了面试报名&#xff0c;等到第三年面试报名时才发现有一科笔试成绩已经过期了......天呐&#xff0c;…

java中get接口示例_Java即时类| 带示例的get()方法

java中get接口示例即时类的get()方法 (Instant Class get() method) get() method is available in java.time package. get()方法在java.time包中可用。 get() method is used to get the value of the given field from this Instant object. get()方法用于从此Instant对象获…

深度学习与计算机视觉系列(6)_神经网络结构与神经元激励函数

作者&#xff1a;寒小阳 && 龙心尘 时间&#xff1a;2016年1月。 出处&#xff1a; http://blog.csdn.net/han_xiaoyang/article/details/50447834 http://blog.csdn.net/longxinchen_ml/article/details/50448267 声明&#xff1a;版权全部。转载请联系作者并注明出…

datasnap xe连接池_DataSnap 连接池

二、 DataSnap连接池连接池http://docwiki.embarcadero.com/Libraries/XE8/en/Datasnap.DSSession.TDSSessionManagerhttp://docwiki.embarcadero.com/Libraries/XE8/en/Datasnap.DSSession.TDSSessionManager_MethodsTDSSessionManager::GetThreadSession()->IdTDSSessionM…

软件测试工程师阶段_软件工程测试阶段

软件测试工程师阶段Testing can be defined as checking the software for its correctness. In other words, we can define it as a process of observing a program for its behavior on providing some set of inputs (known as test cases) to check whether it is produc…

mysql左连接和右连接_MYSQL 左连接与右连接

一、 LEFT JOINLEFT JOIN 关键字从左表(table1)返回所有的行&#xff0c;即使右表(table2)中没有匹配。如果右表中没有匹配&#xff0c;则结果为 NULL。语法&#xff1a;SELECT column_name(s)FROM table1LEFT JOIN table2ON table1.column_nametable2.column_name;举例&#x…

SIPp web frontend(2)

SIP VoIP 測试交流群: 323827101 欢迎大家转载。为保留作者成果&#xff0c;转载请注明出处。http://blog.csdn.net/netluoriver。有些文件在资源中也能够下载。假设你没有积分。能够联系我索要&#xff01;3.6Adding calls to a test(为測试脚本添加呼叫) To add a call, use …

python学习中文第五版_前5个学习Python的网站

python学习中文第五版Python is a multi-utility high-level language (programming as well as a scripting language) first introduced in the year 1991 designed by ‘Guido Van Rossum’, and was named after ‘Monty Python’ which was a very famous British Comedy …

mysql排重_mysql 排重查询

GROUP BY 语句可以实现某一列的去重查询。直接上语句&#xff1a;select io_dev_id from io_info where (TID1 AND host_nameyang1) GROUP BY 1&#xff1b;按照io_dev_id去重查询。p:顺手加上与ORDER BY 和 distinct的区分使用GROUP BY 是根据列捡选ORDER BY 是根据列排序dist…

CentOS7入门_安装并配置mysql5.7.18

2019独角兽企业重金招聘Python工程师标准>>> 1.下载mysql5.7 mysql的官方下载地址 打开之后我们选择对应的系统版本进行下载&#xff0c;之后选择nothanks,不登陆直接下载&#xff08;如果只是搭建最基本的的mysql的server只需要下载上图4个基本rpm文件即可&#xf…

Python Pandas –数据输入和输出

Pandas as a library can read and write data to a wide variety of sources. In this article, we would concentrate on the following, 熊猫作为图书馆可以读取和写入各种来源的数据。 在本文中&#xff0c;我们将重点介绍以下内容&#xff0c; CSV CSV Excel 电子表格 HT…

linux mysql 磁盘空间_磁盘空间满了之后MySQL会怎样

导读当磁盘空间爆满后&#xff0c;MySQL会发生什么事呢&#xff1f;又应该怎么应对&#xff1f;会发生什么事当磁盘空间写满了之后&#xff0c;MySQL是无法再写入任何数据的&#xff0c;包括对表数据的写入&#xff0c;以及binlog、binlog-index等文件。当然了&#xff0c;因为…

高晓松谈管理:自嘲总被员工管

6月11日&#xff0c;高晓松作为阿里巴巴钉钉在深圳卫视举办的“中国酷公司”超级发布会特邀嘉宾&#xff0c;在现场讲述了他对酷公司关键词“自驱力”的理解。 先来说说这场超级发布会的重头戏是阿里钉钉&#xff08;企业应用软件&#xff09;的3.5版本升级发布&#xff0c;钉钉…

as_hash ruby_Ruby中带有示例的Hash.each_pair方法

as_hash rubyHash.each_pair方法 (Hash.each_pair Method) In this article, we will study about Hash.each_pair Method. The working of this method can be predicted with the help of its name but it is not as simple as it seems. Well, we will understand this meth…

mysql杨辉三角_两个经典的小例子:杨辉三角和水仙花

package fllower;/*** 打印杨辉三角* author acer**/public class YangHui {public static void main(String[] args) {int[][] array new int[10][];//输出十行for(int i 0;i<10;i){//行是从0开始 列数加1array[i] new int[i1];//从第一行开始&#xff0c;依次给每行加不…

《Effective Modern C++》翻译--条款4:了解怎样查看推导出的类型

条款4&#xff1a;了解怎样查看推导出的类型 那些想要了解编译器怎样推导出的类型的人通常分为两个阵营。第一种阵营是实用主义者。他们的动力通常来自于编敲代码过程中(比如他们还在调试解决中)&#xff0c;他们利用编译器进行寻找&#xff0c;并相信这个能帮他们找到问题的根…

julia 数组类型转换_在Julia中确定类型的超类型

julia 数组类型转换To determine the supertype of a type – we use the supertype() function, it accepts a data type and returns the concrete supertype of the given type. 要确定类型的超类型 –我们使用supertype()函数 &#xff0c;该函数接受数据类型并返回给定类型…

【js】JavaScript parser实现浅析

最近笔者的团队迁移了webpack2&#xff0c;在迁移过程中&#xff0c;笔者发现webpack2中有相当多的兼容代码&#xff0c;虽然外界有很多声音一直在质疑作者为什么要破坏性更新&#xff0c;其实大家也都知道webpack1那种过于“灵活”的配置方式是有待商榷的&#xff0c;所以作者…

图形学 射线相交算法_计算机图形学中的阴极射线管(CRT)

图形学 射线相交算法什么是阴极射线管(CRT)&#xff1f; (What is Cathode Ray Tube (CRT)?) CRT stands for "Cathode Ray Tube". CRT代表“ 阴极射线管” 。 Cathode Ray Tube is a technology that is used widely in the traditional televisions and screens.…