标签: java android hashmap
在我的android项目中,我有一个HashMap<LinearLayout, Boolean> hashmap。例如,我想在hashmap到true中为条目0到2设置值。 理想情况下,我想使用hash.get(0)等,但这似乎是不可能的。
HashMap<LinearLayout, Boolean> hashmap
hashmap
true
hash.get(0)
在downvoting游戏开始之前:我是hashmaps的新手,我四处寻找解决此问题的方法。 有什么想法吗?
hashmaps
答案 0 :(得分:0)
如果要维护订单,可以使用TreeMap而不是HashMap。