作为Java的新手,我一直想知道这第四行代码是什么意思。
String[] Songs = new String[10];
int position;
.....
if(position != -1)
在java中,数组中的位置为-1是什么意思,我知道在python值(如-1)中可能有助于反转元组。
答案 0 :(得分:2)
好吧,在你的例子中,位置没有应用于数组。所以程序只是检查位置是否为-1。
如果您尝试访问歌曲[-1],您将获得ArrayIndexOutOfBoundsException。