使用mutli线程重绘paintComponent

时间:2016-05-22 15:05:52

标签: java multithreading paintcomponent repaint

我想使用Thread重绘两张图片,但它总是只重绘pan2。 屏幕显示蓝色背景,只有一张图片。 我预计有两条鱼在游泳。

import java.awt.*;
import java.util.Random;
import java.awt.event.*;
import java.io.File;
import java.io.IOException;
import javax.imageio.ImageIO;
import javax.swing.*;

public class demo {

    public static void main(String args[]) throws IOException{
        JFrame frm = new JFrame("sea");
        frm.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        drawPanel pan = new drawPanel(50,50,1);
        drawPanel pan2 = new drawPanel(100,100,2);

        pan.newThread.start();
        pan2.newThread.start();

        frm.add(pan);
        frm.add(pan2);
        frm.setSize(300, 300);

        frm.setVisible(true);
    }
}
class drawPanel extends JPanel implements Runnable{
    int X,Y,moveX,moveY,dirX=1,dirY=1;
    private Image img_icon;    
    Thread newThread; 
    int a;
    static int width = 300;
    static int height = 300;

    drawPanel (int x,int y,int num) throws IOException {
        File file = new File("fish"+num+".png");
        a= num;
        img_icon = ImageIO.read(file);
        X      = x;                     
        Y      = y;                        

        newThread = new Thread(this);
    }

    public void paintComponent( Graphics g ) {
        super.paintComponent( g );
        this.setBackground( Color.blue );
        g.drawImage(img_icon, X, Y,this);
    }

public void stop(){
    newThread = null;
}

pan1& pan2s'线程正常工作,但pan1s'重画不起作用。

public void run() {     
    while(newThread != null) 
    {
        repaint();                       

        try
        {
            Thread.sleep(50);
        }
        catch(InterruptedException E){ }

        moveX = dirX*((int)(Math.random()*100)%3);
        moveY = dirY*((int)(Math.random()*100)%3);
        X = X + moveX;
        Y = Y + moveY; 
    }
}

1 个答案:

答案 0 :(得分:0)

您的问题与线程或绘图无关,而与布局管理器有关。您以默认方式将两个组件添加到BorderLayout使用容器,JFrame的contentPane,因此第二个组件将覆盖第一个组件。

解决方案:更改容器的布局,比如GridLayout。

请注意,如果您希望鱼在同一区域一起游泳,那么您的设置是错误的 - 您应该只有一个绘图面板,并且鱼应该是在单个绘图JPanel上绘制的逻辑构造,而不是GUI结构。

另外,您需要学习并使用Java naming conventions。变量名都应以较低的字母开头,而类名以大写字母开头。了解并遵循这一点将使我们能够更好地理解您的代码,并使您能够更好地理解其他代码。