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 完成
基础教程推荐
- Java ECDSAwithSHA256 签名长度不一致 2022-01-01
- 将 double 转换为 Int,向下舍入 2022-01-01
- 控制台应用程序中的 Java 键盘输入解析 2022-01-01
- 在springboot中如何给mybatis加拦截器 2023-04-29
- 将 Windows 证书导入 Java 2022-01-01
- doFilter()是在servlet的工作完成之前还是之后执行的? 2022-01-01
- Maven:无效的目标版本:10 2022-01-01
- 如何在相机中应用自定义滤镜 [Surfaceview 预览]. 2022-01-01
- JPA惰性列表上的流 2022-01-01
- 在java中使用xpath和selenium解析HTML表格数据 2022-01-01
