我創建了一個存儲關於mp3的三條不同信息的程序。刪除多個ArrayList的內容
我有一個trackNum
,name
和duration
ArrayList
s。
我需要從每一個使用索引編號ArrayList
S的刪除內容,這裏是我做了什麼:
//This is my method
public void removeTrack(Integer postion){
trackNum.remove(postion);
name.remove(postion);
duration.remove(postion);
}
//This is me using the method
case 2:
meth.print();
System.out.println("Please enter the index of the track you want to remove:");
meth.removeTrack(in.nextInt());
break;
我遇到的問題是,它不是刪除每個索引數組列表,例如:
輸入:
index trackNum name duration
0 111 1 1
1 2 2 2
2 3 3 3
3 4 4 4
如果我輸入2,刪除索引2爲每個陣列列表。
輸出:
index trackNum name duration
0 111 1 1
1 3 2 2
2 4 3 3
,如果我輸入111,將刪除111
所以有人可以幫我刪除每個ArrayList
索引的內容。
OMG謝謝你們這麼多@mureinik – IeuanW 2014-12-13 18:39:25
不客氣。 – SMA 2014-12-13 18:42:04