- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用 BlueJ 做一个 Java 类(class)作业。我们需要向基于文本的游戏 Zuul 添加新功能。我决定开始研究库存和元素系统。我很难找到最好的方法来做到这一点,所以我只是即兴发挥。这是我的代码。抱歉,我还没来得及评论所有内容。游戏可以编译,但运行游戏时控制台出现异常。
错误:
java.lang.NullPointerException
at Game.createPlayer(Game.java:15)
at Game.<init>(Game.java:7)
at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:57)
at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
at java.lang.reflect.Constructor.newInstance(Constructor.java:525)
at bluej.runtime.ExecServer$3.run(ExecServer.java:740)
游戏类(这相当于Java中的Main类,这是游戏运行的地方):
import java.util.*;
public class Game
{
public Game()
{
createPlayer();
createItems();
}
private Entity localPlayer;
public void createPlayer(){
Player localPlayer = new Player("Player Name", 0, 0, 0, 0, 0);
localPlayer.equipArmour("Helm", armourDB.get("Helm")); // This is where I think I have gone wrong
}
// Create global hashmap variables
private HashMap<String, Weapon> weaponsDB;
private HashMap<String, Armour> armourDB;
private HashMap<String, Supplement> supplementDB;
public void createItems(){
// Create weapons
weaponsDB = new HashMap<String, Weapon>();
Weapon weaponFists = new Weapon("Fists", "Weapon", 0, 0, 0, 0, 0, "Melee");
Weapon weaponSword = new Weapon("Sword", "Weapon", 0, 0, 0, 0, 0, "Melee");
Weapon weaponBow = new Weapon("Bow", "Weapon", 0, 0, 0, 0, 0, "Ranged");
Weapon weaponDagger = new Weapon("Dagger", "Weapon", 0, 0, 0, 0, 0, "Melee");
weaponsDB.put("Fists", weaponFists);
weaponsDB.put("Sword", weaponSword);
weaponsDB.put("Bow", weaponBow);
weaponsDB.put("Dagger", weaponDagger);
// Create armour
armourDB = new HashMap<String, Armour>();
Armour armourBreastplate = new Armour("Breatplate", "Chest", 0, 0, 0, 0, 0);
Armour armourHelm = new Armour("Helm", "Head", 0, 0, 0, 0, 0);
armourDB.put("Breastplate", armourBreastplate);
armourDB.put("Helm", armourHelm);
// Create supplements
supplementDB = new HashMap<String, Supplement>();
Supplement supplementHealthPotion = new Supplement("Health Potion", 0, 0);
Supplement supplementPowerPotion = new Supplement("Power Potion", 0, 0);
supplementDB.put("Health Potion", supplementHealthPotion);
supplementDB.put("Power Potion", supplementPowerPotion);
}
}
实体类(玩家类和敌人类的构造):
import java.util.*;
public class Entity
{
private boolean entityStatus;
private String entityName;
private int entityHealth;
private int entityPower;
private int entityHealthRegen;
private int entityPowerRegen;
private int entityAttackPower;
private HashMap<String, Armour> entityEquipment;
private ArrayList<Item> entityInventory;
public Entity(
String paramEntityName,
int paramEntityHealth,
int paramEntityPower,
int paramEntityHealthRegen,
int paramEntityPowerRegen,
int paramEntityAttackPower)
{
entityStatus = true;
entityName = paramEntityName;
entityHealth = paramEntityHealth;
entityPower = paramEntityPower;
entityHealthRegen = paramEntityHealthRegen;
entityPowerRegen = paramEntityPowerRegen;
entityAttackPower = paramEntityAttackPower;
entityEquipment = new HashMap<String, Armour>(); // Set all possible equipment slots to null on initial run
entityEquipment.put("Head", null);
entityEquipment.put("Shoulders", null);
entityEquipment.put("Chest", null);
entityEquipment.put("Hands", null);
entityEquipment.put("Legs", null);
entityEquipment.put("Feet", null);
entityEquipment.put("Weapon", null);
entityInventory = new ArrayList<Item>();
}
public boolean getEntityStatus(){
return entityStatus;
}
public String getEntityName(){
return entityName;
}
public int getEntityHealth(){
return entityHealth;
}
public int getEntityPower(){
return entityPower;
}
public int getEntityHealthRegen(){
return entityHealthRegen;
}
public int getEntityPowerRegen(){
return entityPowerRegen;
}
public int getEntityAttackPower(){
return entityAttackPower;
}
// Equips the player with an item into the equipment slot
public void equipArmour(String paramEquipmentSlot, Armour paramArmourName){
entityEquipment.put(paramEquipmentSlot, paramArmourName);
}
public void printInventory(){
System.out.println("Something");
}
}
我认为主要问题是我无法理解主题标签的使用,我需要看一个实例来了解它是如何工作的。有人可以帮忙吗?如果您需要我提供任何其他信息,请告诉我。
最佳答案
这就是问题所在:
armourDB.get("Helm")
此时您尚未初始化 armourDB
。如果您在 createPlayer()
之前调用 createItems()
,则该特定行应该没问题。但您仍然不会初始化名为 localPlayer
的 isntance 变量。您只需为 createPlayer
中声明的本地变量分配一个值。
说实话,目前还不清楚你想要实现什么目标,但这是前两个问题......
关于java - Java HashMap 问题中的 Zuul 重制,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9908487/
我有不同的结构,它们都包含一个 HashMap与 String作为键,但具有不同的值类型。例如,一个结构有一个类型为 HashMap 的成员, 另一个将有一个 HashMap 类型的成员, 等等。 我
我想制作一个包含学生姓名和科目的板,每个学生在每个科目中都有一个成绩(或者没有..他可以离开考试而不写,然后他的案子将是空的)。我只想使用 HashMap。我的意思是,它会是这样的: HashMap>
是否有内存和速度高效的方法来在 HashMap 中动态存储唯一键:值对? key 保证是唯一的,但它们的数量经常变化。插入和删除必须很快。 我所做的是包含有符号距离场的八叉树(非线性/完整)。八叉树经
有谁知道为什么选择通过 LinkedList 而不是另一个 Hashmap 来实现 HashMap 的存储桶。如果桶本身变成了 HashMap,那么 contains 或 get 的时间复杂度似乎是
我想创建一个具有嵌套结构的 HashMap,就像这个复杂的示例: { type: boy name: Phineas father: type: man
这个问题在这里已经有了答案: How do I create a global, mutable singleton? (7 个答案) 关闭 7 年前。 我想要一个可扩展的字典,将 Object 与
HashMap> hm = new HashMap>(); hm.put("Title1","Key1"); for(int i=0;i hm1 = new H
我必须修改当前代码以适应 Spring MVC。我有 HashMap hashmap = new HashMap(); request.setAttribute("dslrErrors", hashm
我正在尝试进行一些错误捕获。 错误应该检查数组的长度是否小于 2,并检查 HashMap 是否包含用户输入的键。 捕获的错误必须仅使用 if 语句,并且必须使用 .length() 方法,并且必须使用
在 stackoverflow 上提出另一个问题后,(Java- Why this program not throwing concurrent Modification exception)我开始
我有两个类,想使用 org.dozer.Mapper( http://dozer.sourceforge.net/ ) 将 Female 对象的属性映射到 Male 对象。 第一类是: public
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be
是否有任何方法可以检查 HashMap 是否包含一组特定的键(这些键是在数组中给出的)。当我尝试类似下面的代码时,它返回 false。 map.containsKey(arrayOf("2018-01
跟进我的问题:How To Access hash maps key when the key is an object 我想尝试这样的事情:webSearchHash.put(xfile.getPa
我有一个可扩展的 ListView ,对于每个 child ,我需要有 4 个“额外”或字符串或其他名称来调用它:- 子标题- 描述- 链接1- 链接2 跟着教程,创建 ListView 、不同的 p
我想确保这是正确的,因为如果不正确,它可能会破坏我的应用程序。 我有这个: private static HashMap> balance = new HashMap<>(); 如果我得到这样的值:
我想做以下事情: 为某个键查找Vec,并将其存储以备后用。 如果它不存在,则为键创建一个空的 Vec,但仍将其保存在变量中。 如何有效地做到这一点?自然地,我认为我可以使用 match: use st
我想做以下事情: 为某个键查找Vec,并将其存储以备后用。 如果它不存在,则为键创建一个空的 Vec,但仍将其保存在变量中。 如何有效地做到这一点?自然地,我认为我可以使用 match: use st
我想做以下事情: 为某个键查找Vec,并将其存储以备后用。 如果它不存在,则为键创建一个空的 Vec,但仍将其保存在变量中。 如何有效地做到这一点?自然地,我认为我可以使用 match: use st
我想做以下事情: 为某个键查找Vec,并将其存储以备后用。 如果它不存在,则为键创建一个空的 Vec,但仍将其保存在变量中。 如何有效地做到这一点?自然地,我认为我可以使用 match: use st
我是一名优秀的程序员,十分优秀!