我是Java新手。 我在学校没学过C。 我真的很想学习Java。 所以我开始了一个小项目。 我陷入了这个nullPointerException。
public class Item{
public Item(){
setItemType("Dirt");
setAmount(64);
isBlock = true;
}
}
public class Inventory {
Item items[] = new Item[36];
int currentSlot = 0;
}
void Describe(){
System.out.println(Name + " has " + Health + " health points.");
System.out.println(Name + " has " + Exp + " exp. points.");
System.out.println(Name + " has a " + inv.items[inv.currentSlot].getItemType() + " block in his hands.");
}
您能帮助我了解我的代码有什么问题吗?