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


Java EnumMap get()用法及代码示例


Java中的Java.util.EnumMap.get(Object key)方法用于提供指定键的映射值。

用法:

get(Object key)

参数:该方法采用一个参数键,该键被传递以返回与其关联的值。

返回值:它返回与关联的键映射的值。


以下示例程序旨在说明get()函数的工作方式:

示例1:

// Java program to demonstrate get(key) 
import java.util.*; 
  
// An enum of geeksforgeeks 
public enum gfg { 
    Global, 
    India 
} 
; 
  
class Enum_demo { 
    public static void main(String[] args) 
    { 
  
        EnumMap<gfg, Integer> mp = new 
                     EnumMap<gfg, Integer>(gfg.class); 
  
        // Values are associated 
        mp.put(gfg.Global, 800); 
        mp.put(gfg.India, 72); 
  
        // Stores the value mapped with the key specified 
        int res = mp.get(gfg.India); 
  
        // Prints the result 
        System.out.println("GeeksforGeeks ranked in India: " 
                                                    + res); 
    } 
}
输出:
GeeksforGeeks ranked in India: 72

示例2:

// Java program to demonstrate get(key) 
import java.util.*; 
  
// An enum of geeksforgeeks 
public enum gfg { 
    India, 
    United_States, 
    China 
} 
; 
  
class Enum_demo { 
    public static void main(String[] args) 
    { 
  
        EnumMap<gfg, String> mp = new 
                  EnumMap<gfg, String>(gfg.class); 
  
        // Values are associated 
        mp.put(gfg.India, "61.7%"); 
        mp.put(gfg.United_States, "18.2%"); 
        mp.put(gfg.China, "2.5%"); 
  
        // Stores the value mapped with the key specified 
        String res = mp.get(gfg.United_States); 
  
        // Prints the result 
        System.out.println("Visitors in United_States: " 
                                                   + res); 
    } 
}
输出:
Visitors in United_States: 18.2%


相关用法


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