0
我目前做的一個小遊戲,我想知道如何使用關鍵字替換編號的指標,例如Java的索引數組關鍵字
private boolean keyStroke = new boolean[4];
if(pressing up key) {
keyStroke[0] = true;
}
我想:
private boolean keyStroke = new boolean[4];
if(pressing up key) {
keyStroke[up] = true;
}
我發現這是可能的變量,如int up = 0;但有沒有其他方法可以這樣做?
我看到他只是需要不斷地像枚舉 – HungPV