4

我在 Swing 中遇到了无限循环问题。做了一些研究并遇到了 SwingWorker 线程,但不确定如何实现它们。我拼凑了一个显示问题的简单程序。一个按钮启动无限循环,我希望另一个按钮停止它,但当然由于 Swing 单线程问题,另一个按钮已冻结。下面的代码和帮助表示赞赏: -

public class Model
{
    private int counter;
    private boolean go = true;

    public void go()
    {
        counter = 0;

        while(go)
        {
            counter++;
            System.out.println(counter);
        }
    }

    public int getCounter()
    {
        return counter;
    }

    public void setGo(boolean value)
    {
        this.go = value;
    }
}

public class View extends JFrame
{
    private JPanel                  topPanel, bottomPanel;
    private JTextArea               messageArea;
    private JButton                 startButton, cancelButton;
    private JLabel                  messageLabel;
    private JScrollPane             scrollPane;

    public View()
    {
        setSize(250, 220);
        setTitle("View");
        setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        topPanel = new JPanel();
        bottomPanel = new JPanel();
        messageArea = new JTextArea(8, 20);
        messageArea.setEditable(false);
        scrollPane = new JScrollPane(messageArea);
        messageLabel = new JLabel("Message Area");
        topPanel.setLayout(new BorderLayout());
        topPanel.add(messageLabel, "North");
        topPanel.add(scrollPane, "South");
        startButton = new JButton("START");
        cancelButton = new JButton("CANCEL");
        bottomPanel.setLayout(new GridLayout(1, 2));
        bottomPanel.add(startButton);
        bottomPanel.add(cancelButton);
        Container cp = getContentPane();
        cp.add(topPanel, BorderLayout.NORTH);
        cp.add(bottomPanel, BorderLayout.SOUTH);
    }

    public JButton getStartButton()
    {
        return startButton;
    }

    public JButton getCancelButton()
    {
        return cancelButton;
    }

    public void setMessageArea(String message)
    {
        messageArea.append(message + "\n");
    }
}


public class Controller implements ActionListener
{
    private Model theModel;
    private View  theView;

    public Controller(Model model, View view)
    {
        this.theModel = model;
        this.theView = view;
        view.getStartButton().addActionListener(this);
        view.getCancelButton().addActionListener(this);
    }

    public void actionPerformed(ActionEvent ae)
    {
        Object buttonClicked = ae.getSource();
        if(buttonClicked.equals(theView.getStartButton()))
        {
            theModel.go();
        }
        else if(buttonClicked.equals(theView.getCancelButton()))
        {
            theModel.setGo(false);
        }
    }
}



public class Main
{
    public static void main(String[] args)
    {
        Model model = new Model();
        View view = new View();
        Controller controller = new Controller(model, view);
        view.setVisible(true);
    }
}
4

4 回答 4

3

您正在阻止Event Dispatch Thread(EDT)。该线程负责处理绘画和其他与 UI 相关的请求。一旦 EDT 被阻止,UI 将被冻结,因为它无法处理任何事件。有关更多详细信息,请参阅事件调度线程教程。

考虑使用计时器(如何使用 Swing 计时器SwingWorker或辅助后台线程。后台线程可以使用SwingUtilities.invokeLater(). 该机制已在 中实现SwingWorker,因此使用它可能更容易。这取决于所需的功能。

于 2012-11-10T23:32:40.407 回答
3

使用 ajavax.swing.Timer来完成go()工作一次,(有一些可选的延迟),在事件处理中使用start()and 。stop()

于 2012-11-11T00:18:28.983 回答
3

你可以很容易地做到这一点,而无需实现任何计时器,你只需要在你的actionPerformed方法中添加两行:

public void actionPerformed(ActionEvent ae)
{
    Object buttonClicked = ae.getSource();
    if(buttonClicked.equals(theView.getStartButton()))
    {
      theModel.setGo(true); //make it continue if it's just stopped
      Thread t = new Thread(new Runnable() { public void run() {theModel.go();}}); //This separate thread will start the new go...
      t.start(); //...when you start the thread! go!
    }
    else if(buttonClicked.equals(theView.getCancelButton()))
    {
        theModel.setGo(false);
    }
}

由于您的Model.go()在单独的线程中运行,事件调度线程可以自由地做它的事情,比如绘制再次释放的按钮,而不是在按钮向下时挂起。

有一个问题!但是,因为运行Model.go()的线程会疯狂运行!,它实际上每秒被调用的次数与您的系统一样多。

如果您打算实现一些动画等,那么您将需要:

  • 使用计时器,

或者

例如,如果您使用线程:

public void go()
{
    counter = 0;
        while(go)
    {
        counter++;
        System.out.println(counter);
        try {
            Thread.sleep(1500); //Sleep for 1.5 seconds
        } catch (InterruptedException e) {
            e.printStackTrace();
        }
    }
}

如您所见,我添加了Thread.sleep(1500)为 1500 毫秒(1.5 秒)的时间。Thread.sleep 可能由于某些原因被中断,因此您必须捕获InterruptedException

在这种特殊情况下,没有必要更深入地正确处理InterruptedException,但是如果您对此感到好奇,可以阅读这篇不错的文章

于 2012-11-11T00:49:27.253 回答
0

我决定使用 SwingWorker 线程,下面是更新后的 Controller 类。它做了我需要它做的事情,但我的问题是,它是正确的方法吗?它是干净的代码吗?另外,我已经尝试根据注释掉的行将 model.go() 方法的输出放入视图的文本区域,但没有成功,有人知道怎么做吗?

public class Controller implements ActionListener
{
private Model theModel;
private View  theView;
private SwingWorker<Void, Void> worker;

public Controller(Model model, View view)
{
    this.theModel = model;
    this.theView = view;
    view.getStartButton().addActionListener(this);
    view.getCancelButton().addActionListener(this);
}

public void actionPerformed(ActionEvent ae)
{
    Object buttonClicked = ae.getSource();
    if(buttonClicked.equals(theView.getStartButton()))
    {
        theModel.setGo(true);
        worker = new SwingWorker<Void, Void>()
        {
            @Override
            protected Void doInBackground()
            {
                // theView.setMessageArea(theModel.getCounterToString());
                return theModel.go();
            }
            @Override
            protected void done()
            {
                // theView.setMessageArea(theModel.getCounterToString());
            }
        };
        worker.execute();

    }
    else if(buttonClicked.equals(theView.getCancelButton()))
    {
        theModel.setGo(false);
    }
}
}


public class Model
{
    public Void go()
    {
        counter = 0;

        while(go)
        {
            counter++;
            System.out.println(counter);
        }
        return null;
    }
于 2012-11-11T16:22:53.737 回答