import javafx.application.*;
import javafx.scene.*;
import javafx.stage.*;
import javafx.scene.layout.*;
public class LoanCalculator extends Application
{
public void start(Stage myStage)
{
myStage.setTitle("Loan Calculator");
FlowPlane rootNode = new FlowPane();
Scene myScene = new Scene( rootNode, 300, 200 );
myStage.setScene( myScene);
myStage.show();
}
public static void main( String [] args)
{
launch(args);
}
}
当我尝试使用Eclipse运行它时,此代码会弹出多次错误。如果这是一个明显的错误,我道歉。我是编码的新手,我在书中发现了这段代码,我想测试一下。
谢谢大家