如何在按下按鈕時將按鈕轉到數組中的最後一個位置而不會收到indexoutofbound錯誤?Android Java Array indexoutofbound
switch (v.getId()) {
case R.id.back:
mainButton.setText(alphabet[position--]);
mainButton.setBackgroundColor(Color.rgb(randomColor, randomColor2, randomColor3));
if (alphabet.equals("A")) {
mainButton.setText(alphabet[25]);
}
break;
case R.id.forward:
mainButton.setText(alphabet[position++]);
mainButton.setBackgroundColor(Color.rgb(randomColor, randomColor2, randomColor3));
if (alphabet.equals("Z")) {
mainButton.setText(alphabet[0]);
}
break;
}
什麼是大小字母數組?? – Kick
AZ ...它是26 @Youngistan – user3371326
值的位置?? – Kick