1

我开发了一个小摇摆应用程序,在其中我绘制了一个正方形。现在我想使用 Thread 在其中心旋转这个正方形。我遇到的问题是如何在我的 rotateSquare() 方法中获取对该正方形的引用。(实际上,如果可能的话,我需要一种方法来旋转同一个正方形,而不是擦除整个内容窗格并在其位置绘制另一个旋转的正方形)。

这是我的代码:

import java.awt.Color;
import java.awt.Container;
import java.awt.Graphics;
import java.awt.Graphics2D;

import javax.swing.JFrame;
import javax.swing.SwingUtilities;


public class Rotation extends JFrame implements Runnable{
Thread t;
Rotation()
{
    super("Animation of rotation about center");
    setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    setSize(400,400);

    setContentPane(new Container(){
        public void paint(Graphics g)
        {
            Graphics2D g2=(Graphics2D)g.create();
            g2.setBackground(Color.WHITE);
            g2.clearRect(0, 0, getWidth(), getHeight());

            g2.setColor(Color.GRAY);
            g2.fillRect(100, 100, 100, 100);
        }
    });

    t=new Thread(this,"pr");
    t.start();


    setVisible(true);
    //setOpacity(0.8f);
}
public void run()
{
    try{
        for(;;)
        {
            Thread.sleep(100);
            SwingUtilities.invokeLater(new Runnable(){public void run(){
                rotateSquare();
            }});
        }
    }catch(InterruptedException e){System.out.println("Thread interrupted");}
}
public void rotateSquare();
{

}
public static void main(String args[])
{
    //setDefaultLookAndFeelDecorated(true);
    SwingUtilities.invokeLater(new Runnable(){public void run(){new Rotation();}});
}

}
4

2 回答 2

3
于 2012-10-24T12:03:49.110 回答
0

您应该定义一个Square包含定义方形对象的代码的类。这将有一个draw(Graphics g)知道如何绘制Square.

在您的其他类中,您将引用一个Square对象。在paint您将调用的方法下square.draw(g)

这样,您可以在Square draw()方法下应用旋转。

于 2012-10-24T11:58:39.877 回答