gpt4 book ai didi

java - 通过索引访问 Map 中的变量

转载 作者:行者123 更新时间:2023-12-01 18:51:16 31 4
gpt4 key购买 nike

我有一个 LinkedHashMap,其中有一个类作为 Key:

private final Map<Files, String> list = new LinkedHashMap<Files,String>();

Files 是一个由 3 个变量组成的类:

class Files {
public String file;
public String duration;
public String status;
}

现在我需要使用索引访问文件中的变量。我知道 LinkedHashMap 不允许使用索引检索值,所以我尝试了以下方法:

List<Entry<Files,String>> randAccess = new ArrayList<Entry<Files,String>>(list.entrySet());

使用randAccess.get(index)我可以检索Key本身,但不能检索类内的特定变量。所以输出类似于 Files@6aa91761=String。

我希望能够获取变量,例如:list.Files.status.Get(index)将返回右侧索引处“status”的值。

最佳答案

您可以使用 .getKey() 从 Map.Entry 获取文件变量。从那里您可以直接获取状态字段。

randAccess.get(index).getKey().status

关于java - 通过索引访问 Map<Class, String> 中的变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15854528/

31 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com