标题有点不具描述性,所以我在这里给出背景。
我正在进行蛇和梯子游戏,玩家位置存储在变量playerLocation中。
我有一系列我想检查的景点,称为" spotLocations"。
我使用
检查球员位置是否在现场if (Arrays.asList(spotLocations).contains(playerLocation))
完成此操作后,我想检查数组中找到值的哪个插槽。 代码是用java编写的,使用eclipse。
答案 0 :(得分:0)
int pos = Arrays.asList(spotLocations).indexOf(playerLocation)