中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

Java繪制正方形的方法有哪些

小樊
87
2024-08-30 07:22:53
欄目: 編程語言

在Java中,可以使用不同的庫和框架來繪制正方形。以下是一些常見的方法:

  1. 使用Java AWT(Abstract Window Toolkit)庫:
import java.awt.*;
import javax.swing.*;

public class DrawSquare extends JFrame {
    public DrawSquare() {
        setSize(400, 400);
        setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    }

    @Override
    public void paint(Graphics g) {
        super.paint(g);
        g.setColor(Color.BLUE);
        g.fillRect(50, 50, 200, 200); // x, y, width, height
    }

    public static void main(String[] args) {
        DrawSquare ds = new DrawSquare();
        ds.setVisible(true);
    }
}
  1. 使用Java2D API:
import java.awt.*;
import javax.swing.*;

public class DrawSquare extends JFrame {
    public DrawSquare() {
        setSize(400, 400);
        setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    }

    @Override
    public void paint(Graphics g) {
        super.paint(g);
        Graphics2D g2d = (Graphics2D) g;
        g2d.setColor(Color.BLUE);
        g2d.fillRect(50, 50, 200, 200); // x, y, width, height
    }

    public static void main(String[] args) {
        DrawSquare ds = new DrawSquare();
        ds.setVisible(true);
    }
}
  1. 使用JavaFX:
import javafx.application.Application;
import javafx.scene.Scene;
import javafx.scene.layout.Pane;
import javafx.scene.paint.Color;
import javafx.scene.shape.Rectangle;
import javafx.stage.Stage;

public class DrawSquare extends Application {
    @Override
    public void start(Stage primaryStage) {
        Pane root = new Pane();
        Rectangle square = new Rectangle(50, 50, 200, 200);
        square.setFill(Color.BLUE);
        root.getChildren().add(square);
        Scene scene = new Scene(root, 400, 400);
        primaryStage.setScene(scene);
        primaryStage.show();
    }

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

這些示例展示了如何使用不同的Java庫和框架繪制正方形。你可以根據項目需求和個人喜好選擇合適的方法。

0
门头沟区| 河源市| 临武县| 莫力| 会东县| 贵德县| 巫溪县| 洪雅县| 寿光市| 韶山市| 运城市| 郁南县| 肃北| 房产| 闽侯县| 邻水| 会理县| 榆中县| 沙坪坝区| 鞍山市| 信阳市| 定日县| 留坝县| 三台县| 永川市| 桐庐县| 昔阳县| 集安市| 杭锦后旗| 于都县| 民县| 广州市| 新郑市| 正镶白旗| 赤壁市| 芒康县| 龙州县| 广德县| 丽江市| 江永县| 略阳县|