php    php100   android
當前位置:首頁 » Java.util包 »

Java.util.ArrayList.add(int index, E elemen)方法實例

評論  編輯

描述

The java.util.ArrayList.add(int index, E elemen) method inserts the specified element E at the specified position in this list.It shifts the element currently at that position (if any) and any subsequent elements to the right (will add one to their indices).

聲明

Following is the declaration for java.util.ArrayList.add() method

public void add(int index, E element)

參數

  • index -- The index at which the specified element is to be inserted.

  • element -- The element to be inserted.

返回值

This method does not return any value.

異常

  • IndexOutOfBoundsException -- if the index is out of range.

實例一

編輯 +分享實例

以下例子將告訴你如何使用 java.util.ArrayList.add(index,E) method.

package gitbook.net;

import java.util.ArrayList;

public class ArrayListDemo {
   public static void main(String[] args) {
      
    // create an empty array list with an initial capacity
    ArrayList<Integer> arrlist = new ArrayList<Integer>(5);

    // use add() method to add elements in the list
    arrlist.add(15);
    arrlist.add(22);
    arrlist.add(30);
    arrlist.add(40);

    // adding element 25 at third position
    arrlist.add(2,25);
	  
    // let us print all the elements available in list
    for (Integer number : arrlist) {
      System.out.println("Number = " + number);
    }  
  }
}   

編譯和執行以上程序,將得到以下的結果:

Number = 15
Number = 22
Number = 25
Number = 30
Number = 40

貢獻/合作者

正在開放中...
 

評論(條)

  • 還冇有評論!