Java.util.LinkedHashMap.clear() 方法 java.util.IdentityHashMap.values() 方法 Java.util.LinkedHashMap.containsValue() 方法 Java.util.LinkedHashMap.clear() 方法 package com.codingdict; import java.util.*; public class BitSetDemo { public static void main(String[] args) { // create a new linked hash map LinkedHashMap map = new LinkedHashMap(5); // add some values in the map map.put("One", 1); map.put("Two", 2); map.put("Three", 3); // print the map System.out.println("Map:" + map); // clear the map map.clear(); // print the map System.out.println("Map:" + map); } } java.util.IdentityHashMap.values() 方法 Java.util.LinkedHashMap.containsValue() 方法