當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Java Collections singletonList()用法及代碼示例


java.util.Collections類的singletonList()方法用於返回僅包含指定對象的不可變列表。返回的列表是可序列化的。

用法:

public static  List singletonList(T o)

參數:此方法將對象o作為要存儲在返回列表中的參數。


返回值:此方法返回一個僅包含指定對象的不可變列表。

以下示例說明了singletonList()方法

示例1:

// Java program to demonstrate 
// singletonList() method 
// for <String> Value 
  
import java.util.*; 
  
public class GFG1 { 
    public static void main(String[] argv) 
        throws Exception 
    { 
  
        try { 
  
            // create singleton list 
            // using method singletonList() method 
            List<String> list = Collections.singletonList("E"); 
  
            // print the list 
            System.out.println("singletonList : " + list); 
        } 
  
        catch (IllegalArgumentException e) { 
            System.out.println("Exception thrown : " + e); 
        } 
    } 
}
輸出:
singletonList : [E]

示例2:

// Java program to demonstrate 
// singletonList() method 
// for <Integer> Value 
  
import java.util.*; 
  
public class GFG1 { 
    public static void main(String[] argv) 
        throws Exception 
    { 
  
        try { 
  
            // create singleton list 
            // using method singletonList() method 
            List<Integer> list = Collections.singletonList(20); 
  
            // print the list 
            System.out.println("singletonList : " + list); 
        } 
  
        catch (IllegalArgumentException e) { 
            System.out.println("Exception thrown : " + e); 
        } 
    } 
}
輸出:
singletonList : [20]


相關用法


注:本文由純淨天空篩選整理自RohitPrasad3大神的英文原創作品 Collections singletonList() method in Java with Examples。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。