Java wait for JFrame to finish(Java 等待 JFrame 完成)
问题描述
我有一个登录框架,我必须等待另一个线程.登录成功后,框架会自行处理.我想弹出应用程序的主框架.现在我正在观察一个布尔值来确定何时启动主框架.这样做的正确方法是什么?观察布尔值并不优雅.
I have a login frame that i have to wait for from another thread. Upon successful login frame disposes itself. And i want to pop up the main frame for the application. Right now i am watching a boolean value to determine when to fire up the main frame. What is the correct way of doing this? Watching a boolean value just does not feel elegant.
推荐答案
如果你有 Java 5 或更高版本,你可以使用 CountDownLatch.例如,假设主机最初处于控制状态,让主机创建倒计时为 1 的 CountDownLatch
并将此锁存器传递给登录帧.然后让主框架等待latch变为0:
If you have Java 5 or later available, you could use a CountDownLatch. For example, assuming the main frame is in control initially, have the main frame create the CountDownLatch
with a count down of 1 and pass this latch to the login frame. Then have the main frame wait for the latch to become 0:
CountDownLatch loginSignal = new CountDownLatch(1);
... // Initialize login frame, giving it loginSignal
... // execute login frame in another Thread
// This await() will block until we are logged in:
loginSignal.await();
拥有登录框架,完成后,减少锁存器:
Have the login frame, when done, decrement the Latch:
loginSignal.countDown();
确保您的登录框架无法在忘记减少闩锁的情况下退出!一旦 CountDownLatch
达到 0,主框架就变为可运行的.
Ensure that there is no way for your login frame to exit where it forgets to decrement the latch! As soon as the CountDownLatch
reaches 0, the main frame becomes runnable.
您也可以使用 信号量
或 Condition
(或 java.util.concurrent
中的任何其他选择),但为此目的,CountDownLatch
似乎更容易使用.
You could also use a Semaphore
or Condition
(or any of a few other choices from java.util.concurrent
), but for this purpose, a CountDownLatch
seems easier to use.
这篇关于Java 等待 JFrame 完成的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:Java 等待 JFrame 完成
- Eclipse 的最佳 XML 编辑器 2022-01-01
- 如何指定 CORS 的响应标头? 2022-01-01
- 转换 ldap 日期 2022-01-01
- 未找到/usr/local/lib 中的库 2022-01-01
- java.lang.IllegalStateException:Bean 名称“类别"的 BindingResult 和普通目标对象都不能用作请求属性 2022-01-01
- 在 Java 中,如何将 String 转换为 char 或将 char 转换 2022-01-01
- 将 Java Swing 桌面应用程序国际化的最佳实践是什么? 2022-01-01
- 获取数字的最后一位 2022-01-01
- GC_FOR_ALLOC 是否更“严重"?在调查内存使用情况时? 2022-01-01
- 如何使 JFrame 背景和 JPanel 透明且仅显示图像 2022-01-01