0
我想訪問我的數組中的某個值,該值指定用於運行我的代碼的特定部分。例如,如果我的數組由數字1到6組成,其中每個數字都分配給通過鍵盤輸入的變量,則該變量將運行我的代碼的一部分,我將如何實現這一點?到目前爲止,我只得到了...如何將變量分配給數組中的特定元素?
public class yTerminal {
public static void main(String[] args)
{
screen.println("Press key to access function: ");
screen.println("1 - Open \n2 - Close \n3 - Help \n"
+ "4 - Internet \n5 - Call \n6 "
+ "- Go");
int[] numberInput = new int[5];
int i;
for (i=1; i < 7; i++)
numberInput[i] = keyboard.readInt("Enter key corresponding to function: ");
}
}
我不確定你在問什麼,但它聽起來像你想要的地圖。 http://docs.oracle.com/javase/7/docs/api/java/util/Map.html – Cruncher
聽起來像他可以在輸入上使用switch case方法來運行一些方法 – wxyz
請注意,在Java數組中編號從零開始。您的'for'循環在5個元素的數組上從1到6計數;您應該從「i = 0」到「i
chrylis