标签: java swing jvm event-dispatch-thread
我有以下情况:
从main方法启动GUI(创建JFrame实例)。
JFrame
在GUI中,我使用课程ScheduledExecutorService
ScheduledExecutorService
executorService.schedule(this, delay, TimeUnit.MILLISECONDS)
当GUI退出时(事件调度线程退出),JVM是否也会终止或继续运行,预定的线程是否仍然准备好调度事件?