gpt4 book ai didi

java - 为 paintComponent(Graphics g) 使用 Thread.sleep() 的时间延迟未按预期工作

转载 作者:行者123 更新时间:2023-12-01 22:40:57 27 4
gpt4 key购买 nike

我正在制作一个动画 ProgressBar,其中我使用了 javax.swing.Graphics 类的多个 fillRect() 方法。
为了在绘制每个矩形后放置一个延迟,我使用了 Thread.sleep(500) 方法来进行延迟,(许多论坛都建议进行延迟)。
问题是,它不是在显示每个矩形框后延迟 0.5 秒,而是在开始时占用所有矩形所需的全部延迟,然后显示最终图像,即进度条。
问题一
为了对每个条形图进行延迟,我将延迟“Thread.sleep(500)”与条形图“fillRect()”放在一个 中for() 循环,我想知道,为什么它在开始时需要所有延迟,然后显示完成的 ProgressBar。
问题2
我如何更改我的代码,以便延迟可以与每个矩形条同时发生,因此当我运行程序时它应该生成一个动画进度条。
代码:

import javax.swing.JOptionPane;
import java.awt.Graphics;
import javax.swing.JFrame;
import javax.swing.JPanel;
import java.awt.Color;

class DrawPanel extends JPanel
{
public paintComponent(Graphics g)
{
super.paintComponent(g);
g.setColor(new Color(71,12,3));
g.fillRect(35,30,410,90);

for ( int i=1; i<=40; i+=2)
{
Color c = new Color (12*i/2,8*i/2,2*i/2);
g.setColor(c);
g.fillRect( 30+10*i,35,20,80);

try
{ Thread.sleep(500); }
catch(InterruptedException ex)
{ Thread.currentThread().interrupt(); }
}
}
}

class ProgressBar
{
public static void main (String []args)
{
DrawPanel panel = new DrawPanel();
JFrame app = new JFrame();
app.setDefaultCloseOperation (JFrame.EXIT_ON_CLOSE);
app.add(panel);
app.setSize(500,200);
app.setVisible(true);
}
}

非常感谢您的帮助,谢谢。

最佳答案

不要阻塞 EDT(事件调度线程)——当发生这种情况时,GUI 将“卡住”。而不是调用 Thread.sleep(n) 实现一个 Swing Timer 来重复任务。参见 Concurrency in Swing更多细节。另外一定要查看@Brian 链接的进度条教程。它包含工作示例。

import java.awt.*;
import java.awt.event.*;
import javax.swing.*;

class DrawPanel extends JPanel
{
int i = 0;
public DrawPanel() {
ActionListener animate = new ActionListener() {
public void actionPerformed(ActionEvent ae) {
repaint();
}
};
Timer timer = new Timer(50,animate);
timer.start();
}
public void paintComponent(Graphics g)
{
super.paintComponent(g);
g.setColor(new Color(71,12,3));
g.fillRect(35,30,410,90);

Color c = new Color (12*i/2,8*i/2,2*i/2);
g.setColor(c);
g.fillRect( 30+10*i,35,20,80);

i+=2;
if (i>40) i = 0;
}
}

class ProgressBar
{
public static void main (String []args)
{
DrawPanel panel = new DrawPanel();
JFrame app = new JFrame();
app.setDefaultCloseOperation (JFrame.EXIT_ON_CLOSE);
app.add(panel);
app.setSize(500,200);
app.setVisible(true);
}
}

关于java - 为 paintComponent(Graphics g) 使用 Thread.sleep() 的时间延迟未按预期工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13414164/

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