溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

java 中List刪除實(shí)例詳解

發(fā)布時(shí)間:2020-09-26 23:50:24 來源:腳本之家 閱讀:296 作者:lqh 欄目:編程語言

java 中List刪除實(shí)例詳解

1、循環(huán)刪除List中的元素

public static void main(String[] args) { 
    List<String> t=new ArrayList<String>(); 
    for (int i = 0; i < 10; i++) { 
      t.add(""+i+""); 
    } 
    System.out.println("原有的List:"+t.toString()); 
    for (int i = 0; i < t.size(); i++) { 
      t.remove(i); 
    } 
    System.out.println("循環(huán)刪除后的List:"+t.toString()); 
  } 

 輸出結(jié)果:

原有的List:[0, 1, 2, 3, 4, 5, 6, 7, 8, 9] 
循環(huán)刪除后的List:[1, 3, 5, 7, 9] 

2、放個(gè)中間List刪除

public static void main(String[] args) { 
    List<String> t=new ArrayList<String>(); 
    for (int i = 0; i < 10; i++) { 
      t.add(""+i+""); 
    } 
    System.out.println("原有的List:"+t.toString()); 
      
    List<String> tt=new ArrayList<String>(); 
    for (int i = 0; i < t.size(); i++) { 
      tt.add(t.get(i)); 
    } 
    t.removeAll(tt); 
    System.out.println("循環(huán)刪除后的List:"+t.toString()); 
  } 

輸出結(jié)果:

原有的List:[0, 1, 2, 3, 4, 5, 6, 7, 8, 9] 
循環(huán)刪除后的List:[] 

感謝閱讀,希望能幫助到大家,謝謝大家對(duì)本站的支持!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請(qǐng)聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI