gpt4 book ai didi

java - 无法在 Javafx 2.0 上实例化 Path() 类

转载 作者:行者123 更新时间:2023-12-02 00:26:09 27 4
gpt4 key购买 nike

我正在学习javafx。

我正在尝试创建一条路径,但是当我实例化类 Path() 时,我收到以下消息:“java.nio.file.Path 是抽象的;无法实例化”

package mapas;

import javafx.application.Application;
import javafx.scene.Group;
import javafx.scene.Scene;
import javafx.scene.effect.BoxBlur;
import javafx.scene.paint.Color;
import javafx.scene.shape.Circle;
import javafx.scene.shape.StrokeType;
import javafx.stage.Stage;
import java.nio.file.Path;
import javax.sound.midi.Patch;

public class Mapas extends Application {

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

@Override
public void start(Stage primaryStage) {
Group root = new Group();
Group circles = new Group();
Scene scene = new Scene(root, 800, 600, Color.BLACK);
primaryStage.setScene(scene);
circles.setEffect(new BoxBlur(10, 10, 3));
primaryStage.show();


for(int i = 0; i < 30; i++){
Circle circle = new Circle(150, Color.web("white", 0.05));
circle.setStrokeType(StrokeType.OUTSIDE);
circle.setStroke(Color.web("white", 0.16));
circle.setStrokeWidth(4);
circles.getChildren().add(circle);
}
root.getChildren().add(circles);

Path path = new Path(); // <-- error
}
}

出了什么问题?

最佳答案

您确定要导入 java.nio.file.Path 而不是 javafx.scene.shape.Path??????

关于java - 无法在 Javafx 2.0 上实例化 Path() 类,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9999719/

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