-1
嗨朋友我沒有使用hashmap的經驗,我需要在java類中創建3個hashmap元素來檢索和迭代來自java bean的值,像這樣如何使用HashMap檢索和迭代來自java bean的值
private String value1;
private String value2;
private String value3;
public String getValue1() {
return value1;
}
public void setValue1(String value1) {
this.value1 = value1;
}
public String getValue2() {
return value2;
}
public void setValue2(String value2) {
this.value2 = value2;
}
public String getValue3() {
return value3;
}
public void setValue3(String value3) {
this.value3 = value3;
}
我需要在每個HashMap中
HashMap<String> values1 = new HashMap<String>();
HashMap<String> values2 = new HashMap<String>();
HashMap<String> values3 = new HashMap<String>();
能否請你幫我每個值排序?
在此先感謝!
你期待什麼? – hd1 2014-09-22 23:06:00
你看過HashMap教程嗎? http://www.tutorialspoint.com/java/java_hashmap_class.htm – mdewitt 2014-09-22 23:10:41