我在其他包中有其他名为Test的类,在默认包中有一个同名的类。
当我单击Eclipse中的Run按钮而不是运行此类时,它会从另一个包中运行另一个Test类:
package jfx;
import javafx.application.Application;
import javafx.scene.Group;
import javafx.scene.Scene;
import javafx.scene.shape.Circle;
import javafx.stage.Stage;
public class Test extends Application {
public void start(Stage stage) {
Circle circ = new Circle(40, 40, 30);
Group root = new Group(circ);
Scene scene = new Scene(root, 400, 300);
stage.setTitle("My JavaFX Application");
stage.setScene(scene);
stage.show();
}
}
我该如何解决这个问题?
答案 0 :(得分:5)
添加main
方法以允许Eclipse将程序识别为可运行的应用程序
public static void main(String[] args) {
Application.launch(args);
}