我需要一些帮助。如果用户从已经存在的基础设施列表中给出正确的名称并使用里面的值,我试图让用户创建基础设施。但是后来我得到了这个错误:线程“main”中的异常 java.lang.NullPointerException TownObject 是内部具有基础设施的抽象类。什么可能导致运行时错误?提前致谢。
townObject commtowers = new infrastructure("telekom", "communication towers", 50);
townObject busstop = new infrastructure("litatrek", "bus stop", 30);
townObject[][] ton = new townObject[20][20];
String iname;
System.out.println("Enter infrastructure name : ");
iname = sc.nextLine();
sc.nextLine();
for (int i=0; i < rows; i++){
for (int j=0; j < columns; j++){
****if (iname.equalsIgnoreCase(ton[i][j].getName())
{
ton[x][y] = new infrastructure(infName, infType, infCost);
}
else
{
System.out.println("Infrastructure is not found.");
}
}
}