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


Java Map Values()用法及代码示例


映射Values()方法返回集合视图中包含的值Map。集合由Map支持,因此对Map的更改会反映在集合中,反之亦然。

用法:

map.values()

参数:此方法不带任何参数。

返回值:它返回Map中所有值的集合视图。



范例1:

Java

// Java program to illustrate the 
// use of Map.Values() Method 
import java.util.*; 
  
public class GfG { 
  
      // Main Method 
    public static void main(String[] args) 
    { 
        // Initializing a Map of type HashMap  
        Map<Integer, String> map 
            = new HashMap<Integer, String>(); 
  
        map.put(12345, "student 1"); 
        map.put(22345, "student 2"); 
        map.put(323456, "student 3"); 
        map.put(32496, "student 4"); 
        map.put(32446, "student 5"); 
        map.put(32456, "student 6"); 
  
        System.out.println(map.values()); 
    } 
}

输出:

[student 4, student 3, student 6, student 1, student 2, student 5]

如您所见,以上示例的输出返回值的集合视图。因此,Map中的任何更改都会自动反映在集合视图中。因此,请始终将collection的泛型与映射值的泛型相同,否则会产生错误。

范例2:

Java

// Java program to illustrate the 
// use of Map.Values() Method 
import java.util.*; 
  
public class GfG { 
  
      // Main Method 
    public static void main(String[] args) 
    { 
        // Initializing a Map of type HashMap  
        Map<Integer, String> map 
            = new HashMap<Integer, String>(); 
  
        map.put(12345, "student 1"); 
        map.put(22345, "student 2"); 
        map.put(323456, "student 3"); 
        map.put(32496, "student 4"); 
        map.put(32446, "student 5"); 
        map.put(32456, "student 6"); 
        Collection<String> collectionValues = map.values(); 
          
          
        System.out.println("<------OutPut before modification------>\n"); 
        for(String s:collectionValues){ 
            System.out.println(s); 
        } 
         
        map.put(3245596, "student 7"); 
        System.out.println("\n<------OutPut after modification------>\n"); 
        for(String s:collectionValues){ 
            System.out.println(s); 
        } 
    } 
}

输出:

<------OutPut before modification------>

student 4
student 3
student 6
student 1
student 2
student 5

<------OutPut after modification------>

student 4
student 3
student 6
student 1
student 2
student 7
student 5

注意读者!现在不要停止学习。以student-friendly的价格掌握Java和Java集合基础知识课程中所有重要的Java和集合概念,并做好行业准备。




相关用法


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