在我的代码中,我有一个单独的Runner类,用于实例化World,该类具有一个4x4的Locations数组(一个单独的类),该数组存储为Location [] []数组。当我打印/尝试使用Location数组时,其值为null,并引发NullPointerException。

public class Runner
{
public static void main(String[] args)
{
...
WumpusWorld test_loc = new WumpusWorld();
System.out.print(test_loc) //This prints an ID for the WumpusWorld object
System.out.print(test_loc.world) //Null value prints here
//I'd like to pass the test_loc.world values to an actor here
...
}
}


WumpusWorld的适用代码如下:

public class WumpusWorld
{
public Location[][] world;
public WumpusWorld()
{
    new WumpusWorld((byte) 4); //this constructor is used
}
...
public WumpusWorld(byte size)
{
this.world = new Location[size][size];
for(byte i = 0; i<size; i++)
{
    for(byte j = 0;j<size;j++)
    {
    world[i][j] = new Location(j,i,true,false,false);
    }
    //Location instances called in the form world[x][y]
    //are error free in constructor
...
}
}

最佳答案

您的问题可能是从默认构造函数调用public WumpusWorld(byte size)的方式。

尝试这个:

public WumpusWorld()
{
    this((byte) 4);
}


在调用中使用new时,内部类中有未初始化的值

10-08 19:49