import java.util.*; public class MaxMapDemo { public static void main(String[] args) { Map<String, Object> map = new HashMap(); map.put("张三", 28); map.put("李四", 18); map.put("王五", 8); System.out.println("Map中Value(值)的最大值的Key:" + getMaxStr(map)); } publ...