gpt4 book ai didi

java - 从线程返回数据类型

转载 作者:行者123 更新时间:2023-12-01 12:04:50 25 4
gpt4 key购买 nike

基本上,我正在远程数据库上进行一些 SQL 查询,并且我被告知始终在单独的线程中运行查询,以免打扰主应用程序的循环(考虑到这是一个实时游戏)。我只是开始添加 SQL 支持,而不是在单独的线程上运行查询会导致巨大的延迟;这是我正在尝试做的事情:

public boolean login(final String username, final String password) {
final AtomicBoolean value = new AtomicBoolean(false);
Thread thread = new Thread(new Runnable() {
public void run() {
Connection connection = null;
Statement statement = null;
ResultSet results = null;
try {
connection = getConnection("root", "", "localhost");
statement = connection.createStatement();

results = statement.executeQuery("SELECT * from `db`.`accounts` WHERE `username`='"+username+"'");

while(results.next()) {
String salt = results.getString("salt");
String dbPass = results.getString("password");

String hashPass = toMD5(toMD5(salt) + toMD5(password));

if(hashPass.equals(dbPass)) {
value.set(true);
}
}

} catch(SQLException e) {
e.printStackTrace();
}
}
});
thread.start();
return value.get();
}

但是,问题是在返回应用程序之前永远不会设置原子 boolean 值。我正在尝试找到最好的方法来执行此操作,而不会阻塞我正在调用的线程。

注意:很清楚我应该在这里使用准备好的语句,首先尝试弄清楚这一点。

最佳答案

I'm trying to find the best way to do this without blocking the thread that I'm calling on.

那是不可能的。如果该线程需要结果,它将必须阻塞,直到该结果可用。

一种选择是使用 CompletableFuture<Boolean>

CompletableFuture<Boolean> future = new CompletableFuture<>();

Thread thread = new Thread(new Runnable() {
public void run() {
...
// when ready, successful (maybe false otherwise)
future.complete(true)
...
}
});

然后您可以调用future.get()它会阻塞当前线程,或者您可以注册一个监听器,当设置结果时将调用该监听器(在另一个线程中,或者如果结果已准备好,则在当前线程中)。

<小时/>

不要管理自己的线程,而是使用线程池。

关于java - 从线程返回数据类型,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27695147/

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