0

我得到一个空指针异常,我以为我已经初始化了数组中的所有对象,但似乎我在某些地方出错了。

这是这个类的代码。在数组外使用 MapBlock 对象时,它可以正常工作。

execption 是当它尝试在更新方法中访问对象时。

public class Game { 
    private Scanner scan;

    // map stuff
    MapBlock[][] mapObjects;


    // List of Textures
    Texture path;
    Texture tower;
    Texture grass;

    Game(){ 
        // Textures
        path = loadTexture("path");
        tower = loadTexture("tower");
        grass = loadTexture("grass");



        mapObjects = new MapBlock[24][16];

        loadLevelFile("level1");        

    }

    public void update(){
        if(mapObjects[0][0] == null)
            System.out.println("its null!!!");
        mapObjects[0][0].update();
    }

    public void render(){
        mapObjects[0][0].render();      
    }




    private Texture loadTexture(String imageName){
        try {
            return TextureLoader.getTexture("PNG", new FileInputStream(new File("res/" + imageName + ".png")));
        }catch(FileNotFoundException e){
            e.printStackTrace();
        }catch(IOException r){
            r.printStackTrace();
        }
        return null;
    }

    private void loadLevelFile(String mapName){
        try {
            scan = new Scanner(new File("res/" + mapName + ".txt"));
        } catch (FileNotFoundException e) {
            System.out.println("Could not open "+ mapName +" file!");
            e.printStackTrace();
        }

        String obj;
        int i = 0, t = 0;

        while(scan.hasNext()){
            obj = scan.next();

            if(obj == "o"){
                mapObjects[i][t] = new MapBlock("GRASS", t*32, i*32, grass);

            }else if(obj == "x"){
                mapObjects[i][t] = new MapBlock("PATH", t*32, i*32, path);

            }else if(obj == "i"){
                mapObjects[i][t] = new MapBlock("TOWER", t*32, i*32, tower);                    
            }

            if(i < 24){
                i++;
            }else{
                i = 0;
                t ++;
            }

        }
    }
}

感谢您的任何反馈

4

1 回答 1

4

在你的loadLevelFile方法中:

-> if(obj == "o"){
// ...
-> }else if(obj == "x"){
// ...  
-> }else if(obj == "i"){
// ...
}

您正在将字符串与==and not进行比较.equals(),这可能会导致您的mapObjects数组的实例化不会发生。

尝试将其更改为:

if(obj.equals("o")){
// ...
}else if(obj.equals("x")){
// ...  
}else if(obj.equals("i")){
// ...
}

错误发生在这里:

if(mapObjects[0][0] == null)
    System.out.println("its null!!!");
mapObjects[0][0].update(); <- Error happens here

因为对象mapObjects[0][0]仍然是null,因为loadLevelFile方法没有实例化它。

于 2012-12-28T19:00:00.897 回答