java queue contains_Java中的ArrayBlockingQueue contains()方法

本文介绍了Java并发库中的ArrayBlockingQueue类的contains()方法,展示了如何检查队列中是否存在特定元素。示例代码创建了一个ArrayBlockingQueue实例,添加并移除元素,然后使用contains()判断元素是否存在于队列中。
摘要由CSDN通过智能技术生成

contains()的ArrayBlockingQueue类的方法被用于搜索队列中的元素。如果元素存在于队列中,则返回TRUE。

语法如下-boolean contains(Object ob)

在这里,ob是要搜索的元素。

要使用ArrayBlockingQueue类,您需要导入以下包-import java.util.concurrent.ArrayBlockingQueue;

以下是实现contains()Java ArrayBlockingQueue类的方法的示例-

示例import java.util.concurrent.ArrayBlockingQueue;

public class Demo {

public static void main(String[] args) throws InterruptedException {

ArrayBlockingQueue q = new ArrayBlockingQueue(10);

q.add(200);

q.add(310);

q.add(400);

q.add(450);

q.add(500);

q.add(550);

q.add(700);

System.out.println("ArrayBlockingQueue = " + q);

System.out.println("The head of the queue = "+q.take());

System.out.println("Does the element 400 exist in the queue? = "+q.contains(400));

//添加更多元素

q.add(50);

q.add(70);

q.add(90);

System.out.println("ArrayBlockingQueue = " + q);

System.out.println("The head of the queue = "+q.take());

System.out.println("Does the element 10 exist in the queue? = "+q.contains(10));

}

}

输出结果ArrayBlockingQueue = [200, 310, 400, 450, 500, 550, 700]

The head of the queue = 200

Does the element 400 exist in the queue? = true

ArrayBlockingQueue = [310, 400, 450, 500, 550, 700, 50, 70, 90]

The head of the queue = 310

Does the element 10 exist in the queue? = false

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值