我有这个字符串数组:
String[] directionsList = {"north", "south", "east", "west"};
我希望在索引i处找到字符串(i是在方法中确定的随机变量)。 我有这个:
String myDirection = directionsList.valueOf(i); # I have no idea if this is even
# close to correct
所以说i = 2,我想回“东方”。有没有内置的Java方法来做到这一点,还是我必须使用循环?感谢。
答案 0 :(得分:4)
String myDirection = directionsList[i];