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


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。