java list詳解及arrayList的四種遍曆方法

來源:互聯網
上載者:User

標籤:java   arraylist   iterator   遍曆   索引   


1.List介面提供的適合於自身的常用方法均與索引有關,這是因為List集合為清單類型,以線性方式儲存物件,可以通過對象的索引操作對象。

  List介面的常用實作類別有ArrayList和LinkedList,在使用List集合時,通常情況下聲明為List類型,執行個體化時根據實際情況的需要,執行個體化為

  ArrayList或LinkedList,例如:List<String> l = new ArrayList<String&gt;();// 利用ArrayList類執行個體化List集合List<String> l2 = new LinkedList<String>();

  // 利用LinkedList類執行個體化List集合


2.add(int index, Object obj)方法和set(int index, Object obj)方法的區別在使用List集合時需要注意區分add(int index, Object obj)方法和set(int index, Object obj)方法,

     前者是向指定索引位置添加對象,而後者是修改指定索引位置的對象


3.indexOf(Object obj)方法和lastIndexOf(Object obj)方法的區別在使用List集合時需要注意區分indexOf(Object obj)方法和lastIndexOf(Object obj)方法,

   前者是獲得指定對象的最小的索引位置,而後者是獲得指定對象的最大的索引位置,前提條件是指定的對象在List集合中具有重複的對象,否則如果在List集合中

   有且僅有一個指定的對象,則通過這兩個方法獲得的索引位置是相同的


4 subList(int fromIndex, int toIndex)方法在使用subList(int fromIndex, int toIndex)方法截取現有List集合中的部分對象產生新的List集合時,需要注意的是,

    新產生的集合中包含起始索引位置代表的對象,但是不包含終止索引位置代表的對象



拓展:

  1. 通常用法:List<類型> list=new ArrayList<類型>();  
  2. List是一個介面,不可執行個體化,  
  3. 通過執行個體化其實作類別來使用List集合,  
  4. 他的最常用實作類別ArrayList;  
  5. 使用樣本:List<String> list= new ArrayList<String>();   
  6.   
  7. List<T> list=new ArrayList<T>();  
  8. 其中類型T是對list集合元素類型的約束,  
  9. 比如說你聲明了一個List<String>,  
  10. 然後往這個集合裡面添加一個不是String類型的對象,  
  11. 會引發異常。 

遍曆arrayList的四種方法:

package com.test;

import java.util.ArrayList;
import java.util.Iterator;
import java.util.List;

public class ArrayListDemo {
    publicstatic void main(String args[]){
       List<String> list = newArrayList<String>();
       list.add("luojiahui");
       list.add("luojiafeng");

       //方法1
       Iterator it1 = list.iterator();
       while(it1.hasNext()){
           System.out.println(it1.next());
       }

       //方法2
       for(Iterator it2 = list.iterator();it2.hasNext();){
            System.out.println(it2.next());
       }

       //方法3
       for(String tmp:list){
           System.out.println(tmp);
       }

       //方法4
       for(int i = 0;i < list.size(); i ++){
           System.out.println(list.get(i));
       }

    }
}


java list詳解及arrayList的四種遍曆方法

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.