Android 从列表中的表获取 datd

发布于 2024-12-10 12:08:21 字数 293 浏览 1 评论 0 原文

我有一个 ArrayList>

这是哈希表。

Hashtable<String, String> table = new Hashtable<String, String>();

该列表将包含许多哈希表。我需要遍历列表并获取每个哈希表的第一个索引处的元素。这可以用一行代码完成吗?我想使用一个变量,而不是通过使用许多循环和变量使其变得复杂。希望我清楚。请帮忙。

I have a ArrayList<Hashtable<String, String>>

this is the hash table.

Hashtable<String, String> table = new Hashtable<String, String>();

the list will contain many hash tables. I need to traverse the list and get the element at the first index of every hashtable. can this be done in one line of code? I want to use one variable and not make it complicated by using many loops and variables. hope I am clear. plz help.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

無處可尋 2024-12-17 12:08:21

您将必须迭代列表,并且在每次迭代中您必须获取第一个索引处的元素。
然而,我不太清楚“哈希表第一个索引处的元素”的含义,因为无法保证哈希表或哈希映射中元素的顺序。不过,如果您正在查找映射到特定键的值,那么这是有意义的。

int i = 0;
for ( HashMap<String,String> map : listOfMaps )
{
    array[ i ] = System.out.println(map.get( "name" ));
    i++;
}

或者:

for ( int i = 0; i < listOfMaps.length; i++ )
{
    array[ i ] = map.get("name");
}

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.

int i = 0;
for ( HashMap<String,String> map : listOfMaps )
{
    array[ i ] = System.out.println(map.get( "name" ));
    i++;
}

or:

for ( int i = 0; i < listOfMaps.length; i++ )
{
    array[ i ] = map.get("name");
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文