现代大碗

文章
4
资源
0
加入时间
3年0月21天

Map.Entry 和 Map.entrySet() ,用类遍历hashMap,hashTable

偶然今天发现HashMap 用到下面的格式 ,直接循环遍历整个hashMap  hashTable返回的 set 中的每个元素都是一个 Map.Entry 类型。private Hashtable<String, String> emails = new Hashtable<String, String>();//      方法一: 用entrySet()//  Iter...