我在重绘面板时遇到问题。我对动画的想法是用 int[] 填充一个数组。那是有效的部分。现在为它设置动画,我使用数组并用数组中的 int[] 填充变量 int[]。然后我调用 repaint 用所有数字重新绘制图像。但直到最后一次重绘才会重绘。任何有想法的人?我认为问题所在的两个班级。下面给出(代码可能很混乱)。
我的想法是,我想按下按钮 shellSort。当我按下这个按钮时,代码将通过一个 for 循环,用整数填充面板中的一个数组。那么它应该重新粉刷我没有做的面板。
编辑:我认为我的问题是它在完成之前永远不会离开 for 循环。如何停止 for 循环以重新绘制面板?然后从我离开的地方继续?
我在一个小示例代码中重建了我的问题:
import java.awt.event.*;
import java.awt.*;
import javax.swing.*;
public class Repainten {
/**
* @param args the command line arguments
*/
public static void main(String[] args) {
GUI g = new GUI();
}
}
public class GUI extends JFrame implements ActionListener{
private JButton button;
private Panel p;
private int[] henk = {10, 6, 4, 2, 3, 7, 9};
public GUI() {
this.setTitle("getallen");
this.setSize(200, 200);
this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
//this.setLayout(new FlowLayout());
button = new JButton("Button");
p = new Panel();
button.addActionListener(this);
JPanel northPanel = new JPanel();
northPanel.add(button);
JPanel centerPanel = new JPanel();
centerPanel.add(p);
add(northPanel, BorderLayout.NORTH);
add(centerPanel, BorderLayout.CENTER);
//add(button);
add(p);
this.setVisible(true);
}
public void actionPerformed(ActionEvent e) {
if (e.getSource() == button) {
animeer();
}
}
public void animeer() {
for (final int a : henk) {
p.cijfer = a;
p.repaint();
}
}
}
public class Panel extends JPanel{
public int cijfer = 0;
public Panel(){
}
@Override
public void paintComponent(Graphics g) {
super.paintComponent(g);
Font font = new Font("Algerian", Font.PLAIN, 100);
g.setFont(font);
System.out.println(cijfer);
g.drawString(Integer.toString(cijfer), 60,110);
}
}