gpt4 book ai didi

java - 让java多线程等待输入给定

转载 作者:塔克拉玛干 更新时间:2023-11-02 19:59:19 24 4
gpt4 key购买 nike

我正在尝试编写一个简单的代码来使用 java 模拟 DB2 数据库上的并发连接。我当前的代码看起来有点像这样:

class TheThread implements Runnable{
@override
public void run(){
//make the database connection
//need to pause here until any button pressed
//execute query to the database
}
}

该程序将同时创建数百到数千个线程,因此我想确保在执行查询之前所有线程都已连接,以便它真正被同时处理。

我该怎么做?

最佳答案

您可以使用 java.util.concurrent 包中的 CyclicBarrier

static CyclicBarrier b = new CyclicBarrier(nConnections);

public void run() {
// make the database connection
b.await(); //threads will stop here untill nConnections are opened
...

关于java - 让java多线程等待输入给定,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30542733/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com