gpt4 book ai didi

Java API "Run on EDT if not on EDT"

转载 作者:搜寻专家 更新时间:2023-11-01 02:14:23 24 4
gpt4 key购买 nike

只是想一想我的一些重复代码:

Runnable run = new Runnable() {
@Override
public void run() {
// Some EDT code
}
};

if (!EventQueue.isDispatchThread()) {
SwingUtilities.invokeAndWait(run);
} else {
run.run();
}

这不是很烦人,但似乎有一些专有功能可以为您检查这一点,尽管我还没有找到它。

最佳答案

it seems like there would be some proprietary function that checks this for you

没有。

关于Java API "Run on EDT if not on EDT",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9795834/

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