在Java图形界面中,我们可以使用Java的AWT(Abstract Window Toolkit)和Swing库来绘制正方形。以下是一个简单的示例,演示了如何在Java图形界面中绘制一个正方形:
import javax.swing.*;
import java.awt.*;
public class SquareDemo {
public static void main(String[] args) {
SwingUtilities.invokeLater(() -> {
JFrame frame = new JFrame("正方形示例");
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.setSize(400, 400);
frame.add(new SquarePanel());
frame.setVisible(true);
});
}
}
class SquarePanel extends JPanel {
@Override
protected void paintComponent(Graphics g) {
super.paintComponent(g);
int width = getWidth();
int height = getHeight();
int squareSize = Math.min(width, height) / 2;
int x = (width - squareSize) / 2;
int y = (height - squareSize) / 2;
g.setColor(Color.BLUE);
g.fillRect(x, y, squareSize, squareSize);
}
}
在这个示例中,我们首先创建了一个名为SquareDemo
的主类,然后在main
方法中创建了一个JFrame
对象。接着,我们创建了一个自定义的JPanel
类(名为SquarePanel
),并重写了paintComponent
方法。在这个方法中,我们计算了正方形的大小和位置,然后使用Graphics
对象绘制了一个蓝色的正方形。
最后,我们将SquarePanel
对象添加到JFrame
中,并设置窗口可见。运行这个程序,你将看到一个包含一个蓝色正方形的窗口。