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]