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

java 方法 示例

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

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

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

  • pollFirst() Method is used to return the first element of the queue denoted by this deque but with removing the first element from this deque.

    pollFirst()方法用于返回此双端队列表示的队列的第一个元素,但会从此双端队列中删除第一个元素。

  • pollFirst() 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.

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

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

    pollFirst()方法在获取此双端队列的元素时不会引发异常。

Syntax:

句法:

    public T pollFirst();

Parameter(s):

参数:

  • It does not accept any parameter.

    它不接受任何参数。

Return value:

返回值:

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

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

Example:

例:

// Java program to demonstrate the example 
// of T pollFirst() method of ArrayDeque 
import java.util.*;
public class PollFirstOfArrayDeque {
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 pollFirst(): ");
System.out.println("ArrayDeque Elements = " + d_queue);
System.out.println();
// By using pollFirst() method to remove and return the
// element at the first position in ArrayDeque
String ele = d_queue.pollFirst();
// Display Returned Elements
System.out.println("d_queue.pollFirst() : " + ele);
System.out.println();
// Display Deque Elements
System.out.println("d_queue after pollFirst(): ");
System.out.println("ArrayDeque Elements = " + d_queue);
}
}

Output

输出量

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

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

java 方法 示例

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

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

相关文章

P2P技术详解(四):P2P技术之STUN、TURN、ICE详解

目录1、内容概述2、STUN详解2.1 RFC3489/STUN2.1.1 报文结构2.1.2实现原理2.1.3STUN功能举例2.2 RFC5389/STUN2.2.1STUN用途2.2.2报文结构2.3 RFC5389与RFC3489的区别2.4 新特性介绍2.4.1指纹机制2.4.2通过DNS发现服务器机制2.4.3认证和消息完整性机制2.4.4备份服务器机制2.5 R…

比较两张大小相同的照片的差异,返回数值

比较两张大小相同的照片的差异&#xff0c;返回数值 from PIL import Image import math import operator from functools import reducedef image_contrast(img1, img2):image1 Image.open(img1)image2 Image.open(img2)h1 image1.histogram()h2 image2.histogram()resul…

poj2115C Looooops

http://poj.org/problem?id2115 参考人家的 如下 如i65534&#xff0c;当i3时&#xff0c;i1 其实就是 i(655343)%(2^16)1 有了这些思想&#xff0c;设对于某组数据要循环x次结束&#xff0c;那么本题就很容易得到方程&#xff1a; x[(B-A2^k)%2^k] /C 即 Cx(B-A)(mod 2^k) 此…

ASP.NET调用javascript脚本的常见方法小结

http://www.codesky.net/article/doc/201004/2010041706872.htm转载于:https://www.cnblogs.com/ZC_Mo-Blog/archive/2010/11/23/1885125.html

python wait方法_Python条件类| 带有示例的wait()方法

python wait方法Python Condition.wait()方法 (Python Condition.wait() Method) wait() is an inbuilt method of the Condition class of the threading module in Python. wait()是Python中线程模块的Condition类的内置方法。 Condition class implements condition variab…

return编程python_python3 第二十一章 - 函数式编程之return函数和闭包

我们来实现一个可变参数的求和。通常情况下&#xff0c;求和的函数是这样定义的&#xff1a;def calc_sum(*args):ax0for n inargs:ax ax nreturn ax但是&#xff0c;如果不需要立刻求和&#xff0c;而是在后面的代码中&#xff0c;根据需要再计算怎么办&#xff1f;可以不返回…

黑色背景下,计算照片白色的区域面积和周长

黑色背景下&#xff0c;计算照片白色的区域面积和周长 import cv2 img cv2.imread(E:\Python-workspace\OpenCV\OpenCV/beyond.png,1)#第一个参数为选择照片的路径&#xff0c;注意照片路径最后一个为正斜杠其他都为反斜杠&#xff1b;第二个参数&#xff0c;其中1表示所选照…

php连接mssql数据库的几种方式

数据库查询不外乎4个步骤&#xff0c;1、建立连接。2、输入查询代码。3、建立查询并取出数据。4、关闭连接。 php连接mssql数据库有几个注意事项&#xff0c;尤其mssql的多个版本、32位、64位都有区别。 首先&#xff0c;php.ini文件中;extensionphp_pdo_mssql.dll ;extensionp…

通俗易懂:快速理解P2P技术中的NAT穿透原理

目录1、基础知识1.1、什么是NAT&#xff1f;1.2、为什么会有NAT&#xff1f;1.3、NAT有什么优缺点&#xff1f;2、NAT的实现方式2.1、静态NAT2.2、NAPT3、NAT的主要类型3.1、完全锥型NAT&#xff08;Full Cone NAT&#xff0c;后面简称FC&#xff09;3.2、受限锥型NAT&#xff…

duration java_Java Duration类| toNanos()方法与示例

duration javaDuration Class toNanos()方法 (Duration Class toNanos() method) toNanos() method is available in java.time package. toNanos()方法在java.time包中可用。 toNanos() method is used to convert this Duration into the number of nanoseconds. toNanos()方…

java 负载均衡_java负载均衡 - 岁月静好I的个人空间 - OSCHINA - 中文开源技术交流社区...

作用对系统的高可用&#xff0c;网络压力的缓解&#xff0c;处理能力扩容的重要手段之一。服务器负载我们通常所说的负载是指&#xff1a;服务器负载软硬件负载服务器负载又分为&#xff1a;软件负载--硬件负载软件负载&#xff1a;通过在服务器上安装一些具有负载功能或模块的…

b tree和b+tree_B TREE实施

b tree和btreeB TREE及其操作简介 (Introduction to B TREE and its operations) A B tree is designed to store sorted data and allows search, insertion and deletion operation to be performed in logarithmic time. As In multiway search tree, there are so many nod…

黑色背景下,将照片内封闭空心图案的空心区域染成Cyan并保存

在黑色背景下&#xff0c;将照片内封闭空心图案的空心区域染色 import cv2 import numpy as np img cv2.imread(E:\Python-workspace\OpenCV\OpenCV/beyond.png,1)#第一个参数为选择照片的路径&#xff0c;注意照片路径最后一个为正斜杠其他都为反斜杠&#xff1b;第二个参数…

Ubuntu输入su提示认证失败的解决方法

Ubuntu输入su提示认证失败的解决方法 启动ubuntu服务时竟然提示权限不够&#xff0c;用su切换&#xff0c;输入密码提示认证失败&#xff0c;这下搞了吧&#xff0c;后来一经查阅原来Ubuntu安装后&#xff0c;root用户默认是被锁定了的&#xff0c;不允许登录&#xff0c;也不允…

SDP协议基本分析(RTSP、WebRTC使用)

目录一、介绍二、标准 SDP 规范1. SDP 的格式2. SDP 的结构&#xff08;1&#xff09;会话描述&#xff08;2&#xff09;媒体描述三、WebRTC 中的 SDP一、介绍 SDP&#xff08;Session Description Protocal&#xff09;以文本描述各端&#xff08;PC 端、Mac 端、Android 端…

MFC六大关键技术(第四部分)——永久保存(串行化)

MFC 六大关键技术 ( 第四部分 ) ——永久保存&#xff08;串行化&#xff09; 先用一句话来说明永久保存的重要&#xff1a;弄懂它以后&#xff0c;你就越来越像个程序员了&#xff01; 如果我们的程序不需要永久保存&#xff0c;那几乎可以肯定是一个小玩儿。那怕我们的记事本…

在网络中配置思科交换机

By default, all ports of a switch are enabled. As we are talking about layer 2 switching, there is no need to configure IP address or any routing protocol on the switch. In such a situation, the configuration is not focused on the switch. 缺省情况下&#…

黑色背景下,描绘照片的轮廓形状并保存

描绘照片的轮廓形状并保存 import cv2 from matplotlib import pyplot as plt # 1.先找到轮廓 img cv2.imread(E:\Python-workspace\OpenCV\OpenCV/beyond.png, 0) _, thresh cv2.threshold(img, 0, 255, cv2.THRESH_BINARY cv2.THRESH_OTSU) image, conturs, hierarchy c…

java pdf合并_Java 合并、拆分PDF文档

本文将介绍如何在Java程序中合并及拆分PDF文档&#xff0c;合并文档时&#xff0c;包括合并多个不同PDF文档为一个文档&#xff0c;以及合并PDF文档的不同页面为一页&#xff1b;拆分文档是&#xff0c;包括将PDF文档按每一页拆分&#xff0c;以及按指定页数范围来拆分。下面将…

HDU4405 期望

对于期望&#xff0c;首先&#xff0c;对于这个公式中p表示概率&#xff0c;x表示随机变量 展开则为 ex p1*x1p2*x2p3*x3....... 对于本题 假设 ex[ i ]表示当前 i 走到 n 的期望值。所以若 i 处没有飞机&#xff0c;ex[ i ]sigma(1/6*ex[ik])1 其中(k1...6) &#xff08;1表示…