본문 바로가기
자바

각 Hashmap에 대해 어떻게해야합니까?

by º기록 2021. 4. 12.
반응형

나는이 분야를 가지고있다 :

HashMap<String, HashMap> selects = new HashMap<String, HashMap>();

해시 & lt; String, 해시 맵> combobox 를 만들어야하는 hashmap < hashmap & lt;문자열, ** 해시 맵 ** & gt; .

(기능이없는) 데모 방법 :

for (int i=0; i < selects.size(); i++) {
    HashMap h = selects[i].getValue();
    ComboBox cb = new ComboBox();

    for (int y=0; y < h.size(); i++) {
        cb.items.add(h[y].getValue);
    }
}

 

해결 방법

 

나는 그 하나에 대해 조금 늦은 것을 알고 있지만, 다른 사람을 돕는 경우에도 내가 한 일을 공유 할 것입니다.

HashMap<String, HashMap> selects = new HashMap<String, HashMap>();

for(Map.Entry<String, HashMap> entry : selects.entrySet()) {
    String key = entry.getKey();
    HashMap value = entry.getValue();

    // do what you have to do here
    // In your case, another loop.
}

 

참조 페이지 https://stackoverflow.com/questions/4234985

 

 

반응형

댓글