gpt4 book ai didi

java - 如何获取列表对象的索引

转载 作者:行者123 更新时间:2023-12-01 17:43:50 25 4
gpt4 key购买 nike

这里的代码是否有任何方法可以通过调用列表中的方法来从列表中获取对象的索引。

例如这样的事情:

class A{
String a="";
String b="";
}

List<A> alist= new ArrayList();

for (A a : alist) {
a.getIndexInList();
}

最佳答案

为什么不使用indexOf?如果我没记错的话,这是列表的内置函数。

 List<A> alist= new ArrayList<>();
for (A a : alist) {
int index = alist.indexOf(a);
}

只有列表才能为您提供索引。除非数组中的对象知道它在数组中,否则它无法为您提供它的索引。

关于java - 如何获取列表对象的索引,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57798780/

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