Android 从列表中的表获取 datd
我有一个 ArrayList
这是哈希表。
Hashtable<String, String> table = new Hashtable<String, String>();
该列表将包含许多哈希表。我需要遍历列表并获取每个哈希表的第一个索引处的元素。这可以用一行代码完成吗?我想使用一个变量,而不是通过使用许多循环和变量使其变得复杂。希望我清楚。请帮忙。
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您将必须迭代列表,并且在每次迭代中您必须获取第一个索引处的元素。
然而,我不太清楚“哈希表第一个索引处的元素”的含义,因为无法保证哈希表或哈希映射中元素的顺序。不过,如果您正在查找映射到特定键的值,那么这是有意义的。
或者:
You will have to iterate over the list, and in each iteration you have to get the element at the first index.
It's not quite clear to me what you mean with "element at the first index of a Hashtable", however, since the order of elements in a Hashtable or HashMap is not guaranteed. It would make sense, though, if you were looking for the value mapped to a specific key.
or: