gpt4 book ai didi

Java "Fire and Forget"线程

转载 作者:行者123 更新时间:2023-12-01 16:36:29 26 4
gpt4 key购买 nike

我有一个方法

public static void startAnimation() {
new AnimationThread().run();
}

其中AnimationThread实现了runnable,它的构造函数是:

public AnimationThread() {
new Thread(this, "Animation Thread");
EventQueue.setAnimationCounter(0);
alive = true;
}

我从小程序的 init() 方法调用的方法挂起,因为它从不返回值。有没有办法启动这个线程并完成 init() 方法,以便我的小程序启动!

谢谢

最佳答案

你需要稍微移动一下东西:

public AnimationThread() {
EventQueue.setAnimationCounter(0);
alive = true;
new Thread(this, "Animation Thread").start();
}

public static void startAnimation() {
new AnimationThread();
}

start() 是神奇的 Thread 方法,它在不同的线程上运行代码; AnimationThread 构造函数调用后会正常返回,AnimationThread.run() 将在新线程中执行。

关于Java "Fire and Forget"线程,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8445306/

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