我真的不想诉诸问,但是我走到了尽头。我正在尝试将存储在hashmap中的对象数组构建到单个数组中。我正在构建一个Minecraft插件,我需要能够做到这一点,以便将所有玩家重置为自然状态。但是,无论出于何种原因,我似乎无法将Spectator []数组实际解析为单个部分。
目标只是让一个以上的人观看。这是我的代码:
public class EagleEye extends JavaPlugin implements Listener{
public HashMap<Spectatee, Spectator[]> spec = new HashMap(Spectatee, Spectator[]);
public HashMap<Spectatee, Spectator[]> orinven = new HashMap<Spectatee, Spectator[]>;
public HashMap<Spectatee, Spectator[]> eeinven = new HashMap<Spectatee, Spectator[]>;
@Override
public void onEnable()
{
//TODO:Who knows.
}
@Override
public void onDisable()
{
//TODO:Spec off any players being spectated and spectating.
Spectator[] frickinhell = spec.get(key));
//Creates a master list of all spectators by uuid
for(Spectator spec : spec.get(Spectator.class))
{
master.add(spec);
}
for(Object spec : master.toArray())
{
//Verify the player is online
if(Bukkit.getPlayer(master)
{
//Verify the player is still spectating
if(tators.get(uuid) == true)
{
//Stop spectating
tators.put(uuid, false);
}
}
}
}
我知道很多代码都被破坏了。但是,我主要担心的是将Spectator []存储在hashmap []中存储的所有实例中,并将其值重置为默认值。一旦我可以访问每个对象本身的每个单独实例,我就可以使用setter重置它们各自的值。
干杯。
答案 0 :(得分:0)
在spec.get(Spectator.class)
中,Spectator.class
与您的密钥类型Spectatee
不匹配。因此,它返回null。
如果您希望有机会获得非空值,则应将Spectatee
的实例传递给spec.get()
。
如果您想收集所有观众而不管他们的密钥,您可以迭代地图的值:
for (Spectator[] value : spec.values())
for(Spectator spec : value)
{
master.add(spec);
}