怎么在Java中使用 List方法 ?針對這個問題,這篇文章詳細(xì)介紹了相對應(yīng)的分析和解答,希望可以幫助更多想解決這個問題的小伙伴找到更簡單易行的方法。
創(chuàng)新互聯(lián)2013年開創(chuàng)至今,是專業(yè)互聯(lián)網(wǎng)技術(shù)服務(wù)公司,擁有項目網(wǎng)站設(shè)計、成都做網(wǎng)站網(wǎng)站策劃,項目實施與項目整合能力。我們以讓每一個夢想脫穎而出為使命,1280元張店做網(wǎng)站,已為上家服務(wù),為張店各地企業(yè)和個人服務(wù),聯(lián)系電話:028-86922220
Java中可變數(shù)組的原理就是不斷的創(chuàng)建新的數(shù)組,將原數(shù)組加到新的數(shù)組中,下文對Java List用法做了詳解。
List:元素是有序的(怎么存的就怎么取出來,順序不會亂),元素可以重復(fù)(角標(biāo)1上有個3,角標(biāo)2上也可以有個3)因為該集合體系有索引
ArrayList:底層的數(shù)據(jù)結(jié)構(gòu)使用的是數(shù)組結(jié)構(gòu)(數(shù)組長度是可變的百分之五十延長)(特點是查詢很快,但增刪較慢)線程不同步
LinkedList:底層的數(shù)據(jù)結(jié)構(gòu)是鏈表結(jié)構(gòu)(特點是查詢較慢,增刪較快)
Vector:底層是數(shù)組數(shù)據(jù)結(jié)構(gòu) 線程同步(數(shù)組長度是可變的百分之百延長)(無論查詢還是增刪都很慢,被ArrayList替代了)
List:特有的方法,凡是可以操作角標(biāo)的方法都是該體系特有的方法
boolean add(int index, E element) boolean addAll(index,Collection)
public static void List_add(){ ArrayList a1 = new ArrayList(); a1.add("java"); a1.add("php");//List集合中的元素可以重復(fù) a1.add(".net"); System.out.println("原集合:"+a1); a1.add(1, "Flash"); a1.add(0, "ps"); System.out.println(a1); ArrayList a2 = new ArrayList(); a2.add("javascript"); a2.add("3dMax"); a2.add("IBM"); a1.addAll(0, a2); System.out.println(a1); }
刪除指定位置的元素
boolean remove(int index)
public static void List_remove(){ ArrayList a1 = new ArrayList(); a1.add("javascript"); a1.add("php"); a1.add("flash"); System.out.println("原集合:"+a1); a1.remove(0); System.out.println(a1); }
修改指定角標(biāo)的元素 set(int index, E element) 返回的是修改的那個元素
public static void List_set() { ArrayList a1 = new ArrayList(); a1.add("javascript"); a1.add("php"); a1.add(".net"); System.out.println("原集合:"+a1); a1.set(1, "falsh"); System.out.println(a1); }
查
get(int index) 返回列表中指定位置的元素 subList(int fromIndex, int toIndex) 返回列表中指定的 fromIndex(包括 )和 toIndex(不包括)之間的部分元素。
public static void List_get() { ArrayList a1 = new ArrayList(); a1.add("java"); a1.add("php"); a1.add("flash"); System.out.println(a1.get(0));//獲取指定角標(biāo)的元素,有了該方法就可以遍歷該集合中的所有元素 System.out.println(a1.subList(1, 3));//獲取集合中某一部分的元素,包含頭不包含尾 }
List集合特有的迭代器:ListIterator(是Iterator的子接口)
注意:
在迭代時,是不可以通過集合對象的方法操作集合中的元素因為會發(fā)生ConcurrentModificationException異常(并發(fā)異常)所以,在迭代器時,只能用迭代器的方法造作元素因為Iterator方法是有限的所以只能對元素進(jìn)行判斷,取出,刪除的操作如果想要其他的操作如添加,修改等,就需要使用其子接口,ListIterator 該接口只能通過List集合的listIterator方法獲取
public class ListIteratorDemo { public static void main(String[] args) { ArrayList a1 = new ArrayList(); a1.add("java01"); a1.add("java02"); a1.add("java03"); a1.add("java04"); System.out.println("原集合是:"+a1); /*在迭代過程中準(zhǔn)備添加或者刪除元素 Iterator it = al.iterator(); while (it.hasNext()){ Object obj = it.next(); if (obj.equals("java02")) //al.add("java008");//會出現(xiàn)并發(fā)異常,因為迭代器正在操作集合,不能再用集合的方法操作集合了 it.remove();//將java02的引用從集合中刪除了 System.out.println("obj:"+obj); } */ //只有List的listIterator有增,刪,改,查這些功能,因為只有List有索引 ListIterator li = a1.listIterator(); while (li.hasNext()){ if(li.next().equals("java02")) //li.add("java009"); li.set("java006"); } } }
Vector:枚舉就是Vector特有的取出方式,跟迭代器很像(其實枚舉和迭代是一樣的) 已經(jīng)被迭代器取代
public class VectorDemo { public static void main(String[] args) { Vector v = new Vector(); v.add("java01"); v.add("java02"); v.add("java03"); v.add("java04"); for(Enumeration en = v.elements();en.hasMoreElements();){ System.out.println(en.nextElement()); } } }
LinkedList:
特有方法:
addFirst();在頭部添加元素
addLast();在尾部添加元素
getFirst(); getLast();
獲取元素但不刪除元素。如果集合中沒有元素,會出現(xiàn)NoSuchElementException
removeFirst(); removeLast();
獲取元素但是刪除元素。如果集合中沒有元素,會出現(xiàn)NoSuchElementException
在JDK1.6出現(xiàn)了替代方法
offerFirst(); offerLast();
peekFirst(); peekLast(); 獲取元素,但是元素不被刪除。如果集合中沒有元素,會返回null
pollFirst(); pollLast(); 獲取元素,但是元素被刪除。如果集合中沒有元素,會返回null
public class LinkedListDemo { public static void main(String[] args) { LinkedList link = new LinkedList(); link.add("java01"); link.add("java02"); link.add("java03"); link.add("java04"); while(!link.isEmpty()){ System.out.println((link.removeLast())); } } }
關(guān)于怎么在Java中使用 List方法 問題的解答就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道了解更多相關(guān)知識。