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


Java Collections singletonMap()用法及代码示例


java.util.Collections类的singletonMap()方法用于返回不可变的映射,仅将指定的键映射到指定的值。返回的映射是可序列化的。

用法:

public static  Map singletonMap(K key, V value)

参数:此方法将以下参数作为参数:


  • key –存储在返回的Map中的唯一键。
  • value –返回的映射键映射到的值。

返回值:此方法返回一个仅包含指定键值映射的不可变映射。

以下示例说明了singletonMap()方法

示例1:

// Java program to demonstrate 
// singletonMap() method 
// for <String, String> Value 
  
import java.util.*; 
  
public class GFG1 { 
    public static void main(String[] argv) 
        throws Exception 
    { 
  
        try { 
  
            // create singleton map 
            // using singletonMap() method 
            Map<String, String> 
                map = Collections 
                          .singletonMap("key", "Value"); 
  
            // pritning the singletonMap 
            System.out.println("Singleton map is: "
                               + map); 
        } 
  
        catch (IllegalArgumentException e) { 
            System.out.println("Exception thrown : " + e); 
        } 
    } 
}
输出:
Singleton map is: {key=Value}

示例2:

// Java program to demonstrate 
// singletonMap() method 
// for <Integer, Boolean> Value 
  
import java.util.*; 
  
public class GFG1 { 
    public static void main(String[] argv) 
        throws Exception 
    { 
  
        try { 
  
            // create singleton map 
            // using singletonMap() method 
            Map<Integer, Boolean> 
                map = Collections 
                          .singletonMap(100, true); 
  
            // pritning the singletonMap 
            System.out.println("Singleton map is: "
                               + map); 
        } 
  
        catch (IllegalArgumentException e) { 
            System.out.println("Exception thrown : " + e); 
        } 
    } 
}
输出:
Singleton map is: {100=true}


相关用法


注:本文由纯净天空筛选整理自RohitPrasad3大神的英文原创作品 Collections singletonMap() method in Java with Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。