What's the equivalent to a .NET SortedDictionary, in Java?
如果.NET有SortedDictionary对象…请问这是什么在爪哇?我还需要能够在Java代码中检索EDCOX1的0个元素(元素)。所以我可以迭代所有的键。
我想这是一个Treemap?但我不认为有一个暴露的
有什么想法吗?
编辑(你的问题和答案的代码标签)。assuming
1 2 3 4 |
使用
你可以打电话
1 2 3 4 5 | // assume a TreeMap<String, String> called treeMap for(String key : treeMap.keySet()) { string value = treeMap[key]; } |
它会好:当量of theP></
1 2 3 4 5 | // assume a SortedDictionary called sortedDictionary foreach(var key in sortedDictionary.Keys) { var value = sortedDictionary[key]; } |
HR></你也可以尝试下面:P></
1 2 3 4 5 6 |
which is the to the following出现代码等价:P></
1 2 3 4 5 6 | // assume SortedDictionary<string, string> called sortedDictionary foreach(KeyValuePair<string, string> kvp in sortedDictionary) { var key = kvp.Key; var value = kvp.Value; } |
是你需要的是()entryset method of sortedmap(treemap)。P></