初始化2d对象数组



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

是这个类的代码。当在数组之外使用MapBlock对象时,它工作得很好。

当它试图访问update方法中的对象时出现异常。

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 ++;
            }
        }
    }
}

感谢您的反馈

在您的loadLevelFile方法中:

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

您将字符串与==而不是.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方法没有实例化它。

相关内容

  • 没有找到相关文章

最新更新