JDK1.4
afficher la copie ordinaire dans le presse-papiers ?
<SPAN style="COLOR: #0000ff">Carte map = new HashMap();
Itérateur it = map.entrySet().iterator();
tandis que (it.hasNext()) {
Entrée Map.Entry = (Map.Entry) it.next();
Clé d'objet = Entry.getKey();
Valeur de l'objet = Entry.getValue();
</SPAN>
Carte map = new HashMap();
Itérateur it = map.entrySet().iterator();
tandis que (it.hasNext()) {
Entrée Map.Entry = (Map.Entry) it.next();
Clé d'objet = Entry.getKey();
Valeur de l'objet = Entry.getValue();
}JDK 1.5, version For-Each
afficher la copie ordinaire dans le presse-papiers ?
Carte m = new HashMap();
pour(Objet o : map.keySet()){
map.get(o);
}
Carte m = new HashMap();
pour(Objet o : map.keySet()){
map.get(o);
}返回的 set 中的每个元素都是一个 Map.Entry 类型。
afficher la copie ordinaire dans le presse-papiers ?
<SPAN style="COLOR: #0000ff">table de hachage privée<String, String> emails = new Hashtable<String, String>();</SPAN>
private Hashtable<String, String> emails = new Hashtable<String, String>(); Il s'agit d'une collection de hashMap et d'une collection.
afficher la copie ordinaire dans le presse-papiers ?
<SPAN style="COLOR: #0000ff">//方法一 : 用entrySet()
Itérateur it = emails.entrySet().iterator();
while(it.hasNext()){
Map.Entry m=(Map.Entry)it.next();
logger.info("email-" + m.getKey() + ":" + m.getValue());
}
// Fonctionnement du jdk1.5, entrée EntrySet() et For-Each()
pour (Map.Entry<String, String> m : emails.entrySet()) {
logger.info("email-" + m.getKey() + ":" + m.getValue());
}
// Fonctionne : keySet()
Itérateur it = emails.keySet().iterator();
tandis que (it.hasNext()){
Clé de chaîne ;
key=(String)it.next();
logger.info("email-" + clé + ":" + emails.get(clé));
}
// Fonctionnement du jdk1.5, clé keySEt() et For-Each
pour (Objet m : emails.keySet()){
logger.info("email-" + m+ ":" + emails.get(m));
}
</SPAN>
// Nom : entrySet()
Itérateur it = emails.entrySet().iterator();
while(it.hasNext()){
Map.Entry m=(Map.Entry)it.next();
logger.info("email-" + m.getKey() + ":" + m.getValue());
}
// Fonctionnement du jdk1.5, entrée EntrySet() et For-Each()
pour (Map.Entry<String, String> m : emails.entrySet()) {
logger.info("email-" + m.getKey() + ":" + m.getValue());
}
// Fonctionne : keySet()
Itérateur it = emails.keySet().iterator();
tandis que (it.hasNext()){
Clé de chaîne ;
key=(String)it.next();
logger.info("email-" + clé + ":" + emails.get(clé));
}
// Fonctionnement du jdk1.5, clé keySEt() et For-Each
pour (Objet m : emails.keySet()){
logger.info("email-" + m+ ":" + emails.get(m));
}
Carte aa = new HashMap();
aa.put("tmp1", new Object());
//追加 替换用同样的函数.
aa.remove("temp1");
//删除
pour (Itérateur i = aa.values().iterator(); i.hasNext(); ) {
Objet temp = i.next();
} //遍历
来个完整的,包含TreeSet的元素内部排序的
afficher la copie ordinaire dans le presse-papiers ?
public static void main (String[] arguments) {
ArrayList<String> list = new ArrayList<String>();
HashMap<Object,Object> hash = new HashMap<Object,Object>();
TreeMap<Object,Object> treeMap = new TreeMap<Object,Object>();
list.add("a");
list.add("b");
list.add("c");
hash.put(3, 3);
hash.put(4, 4);
hash.put(5, 5);
hash.put(6, 6);
hash.put(1, 1);
hash.put(2, 2);
treeMap.put(1, 1);
treeMap.put(2, 2);
treeMap.put(3, 3);
treeMap.put(4, 4);
treeMap.put(5, 5);
treeMap.put(6, 6);
//liste
pour(Chaîne m : liste){
System.out.println(m);
}
// hashmap EntrySet() fonctionne
for(Map.Entry<Object,Object> m: hash.entrySet()){
System.out.println(m.getKey()+"---"+m.getValue());
}
//hashmap keySet() fonctionne
pour (Objet m : hash.keySet()){
System.out.println(m+"---"+hash.get(m));
}
// Treemap keySet()
pour (Objet m : treeMap.keySet()){
System.out.println(m+"---"+treeMap.get(m));
}