java .pop_Java ConcurrentLinkedDeque pop()用法及代码示例

Java中的Java.util.ConcurrentLinkedDeque.pop()方法用于从ConcurrentLinkedDeque中弹出元素。该元素从ConcurrentLinkedDeque的顶部弹出,并从该元素中删除。

用法:

ConcurrentLinkedDeque.pop()

参数:该方法不带任何参数。

返回值:此方法返回存在于ConcurrentLinkedDeque顶部的元素,然后将其删除。

异常:如果ConcurrentLinkedDeque为空,则抛出EmptyConcurrentLinkedDequeException。

以下程序说明了Java.util.ConcurrentLinkedDeque.pop()方法:

示例1:

// Java code to illustrate pop()

import java.util.*;

import java.util.concurrent.*;

public class ConcurrentLinkedDequeDemo {

public static void main(String args[])

{

// Creating an empty ConcurrentLinkedDeque

ConcurrentLinkedDeque CLD

= new ConcurrentLinkedDeque();

// Use add() method to add elements

CLD.push("Welcome");

CLD.push("To");

CLD.push("Geeks");

CLD.push("For");

CLD.push("Geeks");

// Displaying the ConcurrentLinkedDeque

System.out.println("Initial ConcurrentLinkedDeque: "

+ CLD);

// Removing elements using pop() method

System.out.println("Popped element: " + CLD.pop());

System.out.println("Popped element: " + CLD.pop());

// Displaying the ConcurrentLinkedDeque after pop operation

System.out.println("ConcurrentLinkedDeque after pop peration "

+ CLD);

}

}

输出:

Initial ConcurrentLinkedDeque: [Geeks, For, Geeks, To, Welcome]

Popped element: Geeks

Popped element: For

ConcurrentLinkedDeque after pop peration [Geeks, To, Welcome]

示例2:

// Java code to illustrate pop()

import java.util.*;

import java.util.concurrent.*;

public class ConcurrentLinkedDequeDemo {

public static void main(String args[])

{

// Creating an empty ConcurrentLinkedDeque

ConcurrentLinkedDeque CLD

= new ConcurrentLinkedDeque();

// Use add() method to add elements

CLD.push(10);

CLD.push(15);

CLD.push(30);

CLD.push(20);

CLD.push(5);

// Displaying the ConcurrentLinkedDeque

System.out.println("Initial ConcurrentLinkedDeque: "

+ CLD);

// Removing elements using pop() method

System.out.println("Popped element: " + CLD.pop());

System.out.println("Popped element: " + CLD.pop());

// Displaying the ConcurrentLinkedDeque after pop operation

System.out.println("ConcurrentLinkedDeque after pop operation "

+ CLD);

}

}

输出:

Initial ConcurrentLinkedDeque: [5, 20, 30, 15, 10]

Popped element: 5

Popped element: 20

ConcurrentLinkedDeque after pop operation [30, 15, 10]

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值