当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。