小编典典

如何为每个哈希图?

all

我有这个领域:

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

对于每个Hash<String, HashMap>我需要创建一个ComboBox,其项目是 的值(恰好是 HashMap 本身)HashMap <String, **HashMap**>

通过(非功能性)演示:

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);
    }
}

阅读 102

收藏
2022-03-08

共1个答案

小编典典

我知道我有点晚了,但我也会分享我所做的,以防它帮助别人:

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.
}
2022-03-08