gpt4 book ai didi

java - 如果在 JFrame 代码中调用 repaint(),JPanel 不会重绘

转载 作者:搜寻专家 更新时间:2023-11-01 01:32:40 25 4
gpt4 key购买 nike

我有一个类 ForestCellularJPanel,它扩展了 JPanel 并显示了 Forest。我编写了一个原始代码来创建 JFrameForestCellularJPanel 并将 CellularJPanel 添加到 JFrame。接下来是一个无限循环,它使 Forest 更新并使 CellularJPanel 重绘。

    JFrame jFrame = new JFrame();          

Forest forest = new Forest();
CellularJPanel forestJPanel = new CellularJPanel(forest);

jFrame.add(forestJPanel);

jFrame.pack();
//jFrame.setResizable(false);
jFrame.setLocationRelativeTo(null);
jFrame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
jFrame.setVisible(true);

while (true)
{
try
{
forestJPanel.repaint();
forest.update();
forest.sleep(); // calls Thread.sleep(...)
}
catch (InterruptedException e)
{

}
}

这是 CellularJPanel 类的代码:

public class CellularJPanel extends JPanel
{
private CellularAutomata cellularAutomata;

public CellularJPanel(CellularAutomata cellularAutomata)
{
super();
this.cellularAutomata = cellularAutomata;
setPreferredSize(this.cellularAutomata.getDimension());
}

@Override
public void paintComponent(Graphics g)
{
super.paintComponent(g);
Graphics2D graphics2D = (Graphics2D)g;
cellularAutomata.draw(graphics2D);
}
}

如果我在 main() 方法中使用上面的代码,那么一切正常,CellularJPanel 重绘,paintComponent() 正常调用。

如果我将相同的代码粘贴到 UI JFrame 按钮单击事件方法,那么新的 JFrame 会显示甚至显示 Forest 的初始状态,因为一旦调用了 paintComponent,当调用 jFrame.setVisible(true) 时。然后正在执行while 循环,但是CellularJPanel 没有重绘,paintComponent 没有被调用。我不知道为什么,也许我应该以某种方式使用 SwingUtilities.invokeLater(...)java.awt.EventQueue.invokeLater,但我已经尝试过了没用,我做错了什么。

有什么建议吗?

附言我的目标是在单击按钮的同一个 UI JFrame 中显示 CellularJPanel。但即使我将此面板添加到主 UI JFrame,它也不起作用。

最佳答案

您的问题是在 Event Dispatch Thread 上有一个 while(true)这将阻止与 UI 相关的任何内容,因为不再处理 UI 事件。

事件分配线程(单个线程)处理一个 UI 事件消息队列,直到它处理您的 while(true) 循环正在运行的消息。然后它会阻止任何进一步的处理,因为它有一个无限循环。从该循环调用 SwingUtilities.invokeLater 不会有帮助,因为它会将事件发布到事件调度线程,该线程在 while(true) 循环中被阻止。

所以删除那个循环,而不是使用 javax.swing.Timer为您的 Activity 计时。在计时器事件中,更改 UI 的状态并调用 repaint。计时器事件将与 UI 线程同步,因此允许更改 UI 组件的状态。

关于java - 如果在 JFrame 代码中调用 repaint(),JPanel 不会重绘,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35382456/

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