singletonList()方法實例
singletonList(T) 方法用於返回一個隻包含指定對象的不可變列表。
聲明
以下是java.util.Collections.singletonList()方法的聲明。
public static <T> List<T> singletonList(T o)
參數
-
o--這是要被存儲在返回的列表中的唯一對象。
返回值
-
在方法調用返回一個隻包含指定對象的不可變列表。
異常
-
NA
例子
下麵的例子顯示java.util.Collections.singletonList()方法的使用
package com.yiibai; import java.util.*; public class CollectionsDemo { public static void main(String args[]) { // create an array of string objs String init[] = { "One", "Two", "Three", "One", "Two", "Three" }; // create one list List list = new ArrayList(Arrays.asList(init)); System.out.println("List value before: "+list); // create singleton list list = Collections.singletonList("TP"); System.out.println("List value after: "+list); } }
現在編譯和運行上麵的代碼示例,將產生以下結果。
List value before: [One, Two, Three, One, Two, Three] List value after: [TP]