java queue 清空_Java DelayQueue clear()用法及代码示例

Java中的DelayQueue的clear()方法用于删除当前DelayQueue对象中的所有元素。返回此调用后,队列将为空。延迟中没有过期的队列中的元素会自动从队列中丢弃。

句法:

public void clear()

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

返回值:此方法不返回任何值。

以下示例程序旨在说明上述方法:

// Java program to illustrate the clear() method

// of DelayQueue class

import java.util.concurrent.DelayQueue;

import java.util.concurrent.Delayed;

import java.util.concurrent.TimeUnit;

public class GFG {

public static void main(String args[])

{

// Create a DelayQueue instance

DelayQueue queue = new DelayQueue();

// Create an Object of type Delayed

Delayed obj = new Delayed() {

public long getDelay(TimeUnit unit)

{

return 24; // some value is returned

}

public int compareTo(Delayed o)

{

if (o.getDelay(TimeUnit.DAYS) >

this.getDelay(TimeUnit.DAYS))

return 1;

else if (o.getDelay(TimeUnit.DAYS) ==

this.getDelay(TimeUnit.DAYS))

return 0;

return -1;

}

};

// Add the obj to the queue

queue.add(obj);

// Check if queue is empty

System.out.println("Is queue empty() : "

+ queue.isEmpty());

// Remove all elements from queue

// uing clear() method

queue.clear();

// Check if queue is empty

System.out.println("Is queue empty after calling clear() : "

+ queue.isEmpty());

}

}

输出:

Is queue empty() : false

Is queue empty after calling clear() : true

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

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值