gpt4 book ai didi

java - 遍历列表并绘制彩色方 block

转载 作者:行者123 更新时间:2023-11-29 05:02:47 29 4
gpt4 key购买 nike

我有一个彩色框,我希望它每 1/2 秒改变一次颜色,但我希望我的代码也能运行。

我正在使用 Java AWT 的图形 Api 使用 g.fillRect(568, 383, 48, 48) 进行绘图;其中 g 被包装为“图形”。

所以您认为这很简单,对吧?

Color[] colors

colors = new Color[4];

colors[0] = new Color(Color.red);
colors[1] = new Color(Color.blue);
colors[2] = new Color(Color.green);
colors[3] = new Color(Color.yellow);

for(int i = 0; i < colors.length; i++){
g.setColor(colors[i]);
g.fillRect(568, 383, 48, 48);
}

这一切都很酷,但问题是当这个 for 循环运行时,我的程序都没有运行......

我想我可以让游戏成为“多线程”,这意味着它一次可以做不止一件事,但我不知道该怎么做,而且听起来很难,感谢大家的帮助!

最佳答案

大多数 UI 框架都不是线程安全的,因此您需要注意这一点。例如,在 Swing 中,您可以使用 Swing Timer 充当伪循环。因为 Timer 从 Event Dispatching Thread 的上下文中通知 ActionListener,所以可以安全地从内部更新 UI 或 UI 的状态,而不会危及线程竞争条件

看看Concurrency in SwingHow to use Swing Timers了解更多详情

Colors

import java.awt.Color;
import java.awt.Dimension;
import java.awt.EventQueue;
import java.awt.Graphics;
import java.awt.Graphics2D;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import javax.swing.JFrame;
import javax.swing.JPanel;
import javax.swing.Timer;
import javax.swing.UIManager;
import javax.swing.UnsupportedLookAndFeelException;

public class JavaApplication430 {

public static void main(String[] args) {
new JavaApplication430();
}

public JavaApplication430() {
EventQueue.invokeLater(new Runnable() {
@Override
public void run() {
try {
UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
} catch (ClassNotFoundException | InstantiationException | IllegalAccessException | UnsupportedLookAndFeelException ex) {
ex.printStackTrace();
}

JFrame frame = new JFrame("Testing");
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.add(new TestPane());
frame.pack();
frame.setLocationRelativeTo(null);
frame.setVisible(true);
}
});
}

public class TestPane extends JPanel {

private Color[] colors;
private int whichColor = 0;

public TestPane() {

colors = new Color[4];

colors[0] = Color.red;
colors[1] = Color.blue;
colors[2] = Color.green;
colors[3] = Color.yellow;

Timer timer = new Timer(500, new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
whichColor++;
repaint();
if (whichColor >= colors.length) {
whichColor = colors.length - 1;
((Timer)(e.getSource())).stop();
}
}
});
timer.start();
}

@Override
public Dimension getPreferredSize() {
return new Dimension(200, 200);
}

@Override
protected void paintComponent(Graphics g) {
super.paintComponent(g);
Graphics2D g2d = (Graphics2D) g.create();
g2d.setColor(colors[whichColor]);
g2d.fillRect(0, 0, getWidth(), getHeight());
g2d.dispose();
}

}

}

关于java - 遍历列表并绘制彩色方 block ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31486395/

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