fill(List<? super T>, T) 方法是用來取代所有指定的列表中具有指定元素的元素。
以下是java.util.Collections.fill()方法的宣告。
public static <T> void fill(List<? super T> list, T obj)
list--這是被填充有指定的元素的列表。
obj--這是用於填充指定列表中的元素。
NA
UnsupportedOperationException--這被丟擲,如果指定列表或其列表疊代器不支援set操作。
下面的例子顯示java.util.Collections.fill()方法的使用
package com.yiibai; import java.util.*; public class CollectionsDemo { public static void main(String args[]) { // create array list object List arrlist = new ArrayList(); // populate the list arrlist.add("A"); arrlist.add("B"); arrlist.add("C"); System.out.println("List elements before fill: "+arrlist); // fill the list with 'TP' Collections.fill(arrlist,"TP"); System.out.println("List elements after fill: "+arrlist); } }
現在編譯和執行上面的程式碼範例,將產生以下結果。
List elements before fill: [A, B, C] List elements after fill: [TP, TP, TP]