我有测试方法,它启动GUI窗口,然后启动无限循环。我想在GUI关闭时完成测试方法。任何想法我怎么能达到它?我尝试设置 BOOL useNativeDialog = YES;
变量,当按下退出按钮时,我将其更改为false,因此循环应该完成,但是当我查看日志时,测试状态开始。
boolean
当我按下退出按钮时,testRunning变量设置为false。
答案 0 :(得分:0)
我认为您的问题是,您通过执行循环来阻止线程与您的UI。
我用JFrame做了一个小例子。这个框架有一个和框架一样大的JButton。在Thread is和Loop中工作直到按下Button:
import java.awt.Dimension;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import javax.swing.JButton;
import javax.swing.JFrame;
public class Test {
//to setThe state of the loop
public static boolean continueLoop = true;
public static void main(String[] args) {
//Create a Frame
JFrame frame = new JFrame();
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.setLocationRelativeTo(null);
Dimension d = new Dimension(400, 400);
frame.setSize(d);
//Add a button to close the programm or end the loop
JButton b = new JButton("Close");
b.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
continueLoop = false;
//Enable this if you want to close the programm
//System.exit(0);
}
});
// Start a Thread with your endless loop in it
Thread t = new Thread(new Runnable() {
@Override
public void run() {
int i = 1;
while(continueLoop)
{
try {
Thread.sleep(500);
System.out.println("Try: " + i);
i++;
} catch (InterruptedException e) {
e.printStackTrace();
}
}
}
});
t.start();
// Add a button and set de Frame visible
frame.add(b);
frame.setVisible(true);
}
}
希望有所帮助!
PS:这是我能想到的最快的例子。请注意,有更好的方法可以向UI添加状态控制循环。例如,我在我的例子中使用了静态变量 - 你不应该在你的应用程序中这样做 - 除非它确实是必要的。