Java 简单程序上的NullPointerException错误

Java 简单程序上的NullPointerException错误,java,Java,我正在尝试制作一个基本的游戏,其中一个点在屏幕上随机移动,当它被点击时,用户会得到一些分数。当我运行程序时,我在start方法中得到一个NullPointerException。我想知道我做错了什么,以及改进程序的任何类型。谢谢大家! import javafx.application.Application; import javafx.event.ActionEvent; import javafx.event.EventHandler; import javafx.stage.Popup;

我正在尝试制作一个基本的游戏,其中一个点在屏幕上随机移动,当它被点击时,用户会得到一些分数。当我运行程序时,我在start方法中得到一个NullPointerException。我想知道我做错了什么,以及改进程序的任何类型。谢谢大家!

import javafx.application.Application;
import javafx.event.ActionEvent;
import javafx.event.EventHandler;
import javafx.stage.Popup;
import javafx.stage.Stage;
import javafx.scene.Scene;
import javafx.scene.control.Button;
import javafx.scene.input.MouseEvent;
import javafx.scene.layout.Pane;
import javafx.scene.shape.Circle;
import javafx.scene.text.Text;
import java.util.Random;
import java.util.Timer;
import java.util.TimerTask;


public class CatchTheDot extends Application{

//create ball for game
public static Circle dot;

//create pane to run game
public static Pane window;

//create score counter
int score = 0;

//creat random
Random random = new Random();

@Override
public void start(Stage primaryStage) throws Exception {

    window.getChildren().add(dot);

    // create scene and place on pane
    Scene s = new Scene(window, 800, 800);
    primaryStage.setTitle("Catch The Dot");
    primaryStage.setScene(s);
    primaryStage.show();

    //move dot
    Timer timer = new Timer();
    timer.schedule(new TimerTask() 
        {
        @Override
        public void run(){
        window.getChildren().remove(dot);
        int ranX = random.nextInt(800-1); // random value from 0 to width
        int ranY = random.nextInt(800-1);  // random value from 0 to height
        window.getChildren().add(ranY, dot);
        }
        }, 0, 5000);        


    // create listener
    dot.setOnMouseClicked(new EventHandler<MouseEvent>()
        {
        public void handle(MouseEvent e){
        if(e.getSource()==dot)
        {
            score = score + 10;
            if(score == 50)
            {
                popUp(primaryStage);
            }
        }
    }
});
}
public void popUp(final Stage primaryStage)
{
    primaryStage.setTitle("You won!");
    final Popup popup = new Popup();
    popup.setX(300);
    popup.setY(200);
    Text t = new Text("You won! Nice job!");
    Text tt = new Text("Play again?");
    Button yes = new Button("yes");
    Button no = new Button("no");
    popup.getContent().addAll(t, tt, yes, no);
    yes.setOnAction(e -> Yes());
    no.setOnAction(e -> No());
}

public void Yes()
{
    restartGame();
}
public void No()
{
    System.exit(0);
}
public void restartGame()
{
    score = 0;
}
public static void main(String[] args)
{
    launch(args);
}

在第34行,如跟踪所示:

window.getChildren.adddot


此时窗口或点或两者都未初始化。因此出现空指针异常。

窗口和点已声明但未定义

调用您粘贴错误日志?您在哪一行获得错误?您不能使用调试器?可能的原因是点从未实例化,但正如其他人指出的,做一些基本的调试会更好。window.getChildren.adddot;。。。窗口和点似乎都是空的。我不是在代码的开头初始化它们吗?我想这就是我在做的……你在声明它们,因为你在告诉编译器,一个特定的变量应该被视为一个特定类的对象。您从未初始化过它。声明变量指定了它的类型,要初始化它,您需要为它们赋值。如果一个表达式不知道它的值,编译器如何用这个变量对它求值呢?好的,我明白你的意思,出于某种原因,我认为这两个变量都已经准备好了。。谢谢你们两位的帮助,太好了。如果你的问题解决了,请考虑接受其中一个答案。我如何定义它们?抱歉,如果这是一个愚蠢的问题。。。
Exception in Application start method
java.lang.reflect.InvocationTargetException
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
    at java.lang.reflect.Method.invoke(Method.java:497)
    at com.sun.javafx.application.LauncherImpl.launchApplicationWithArgs(LauncherImpl.java:389)
    at com.sun.javafx.application.LauncherImpl.launchApplication(LauncherImpl.java:328)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
    at java.lang.reflect.Method.invoke(Method.java:497)
    at sun.launcher.LauncherHelper$FXHelper.main(LauncherHelper.java:767)
Caused by: java.lang.RuntimeException: Exception in Application start method
    at com.sun.javafx.application.LauncherImpl.launchApplication1(LauncherImpl.java:917)
    at com.sun.javafx.application.LauncherImpl.lambda$launchApplication$156(LauncherImpl.java:182)
    at java.lang.Thread.run(Thread.java:745)
Caused by: java.lang.NullPointerException
    at CatchTheDot.start(CatchTheDot.java:34)
    at com.sun.javafx.application.LauncherImpl.lambda$launchApplication1$163(LauncherImpl.java:863)
    at com.sun.javafx.application.PlatformImpl.lambda$runAndWait$176(PlatformImpl.java:326)
    at com.sun.javafx.application.PlatformImpl.lambda$null$174(PlatformImpl.java:295)
    at java.security.AccessController.doPrivileged(Native Method)
    at com.sun.javafx.application.PlatformImpl.lambda$runLater$175(PlatformImpl.java:294)
    at com.sun.glass.ui.InvokeLaterDispatcher$Future.run(InvokeLaterDispatcher.java:95)
Exception running application CatchTheDot