如何检查数组属于哪个位置(java)?

时间:2017-04-18 15:20:29

标签: java arrays eclipse location

标题有点不具描述性,所以我在这里给出背景。

我正在进行蛇和梯子游戏,玩家位置存储在变量playerLocation中。

我有一系列我想检查的景点,称为" spotLocations"。

我使用

检查球员位置是否在现场
if (Arrays.asList(spotLocations).contains(playerLocation))

完成此操作后,我想检查数组中找到值的哪个插槽。 代码是用java编写的,使用eclipse。

1 个答案:

答案 0 :(得分:0)

int pos = Arrays.asList(spotLocations).indexOf(playerLocation)