包装类Wrapper Class基础总结
Map<String,String> map=new HashMap<>();//注意其声明格式 System.out.println(map.size());//获取map键值对个数 System.out.println(map.isEmpty());//判断map是否为空 System.out.println(map.g...