gpt4 book ai didi

android - 在kotlin的自定义类型arraylist中按id搜索对象

转载 作者:太空狗 更新时间:2023-10-29 15:49:59 25 4
gpt4 key购买 nike

这个问题在这里已经有了答案:





Kotlin how to return a SINGLE object from a list that contains a specific id?

(4 个回答)


3年前关闭。




它可以在 Java 中轻松完成。

for(Event event:eventList){
if(event.id.equalTo(eventId){
Event e=new Event();
e=event;
}
}

我在 Kotlin 中这样做,但预期的结果没有到来
  fun filterList(listCutom: List<Event>?) {
listCutom!!.forEachIndexed { index, eventid ->
if (listCutom[index].eventTypeId.equals(eventType)) {
event= eventid
}
}
}

我如何使用 filter 来处理 Kotlin或 forEachIndexed或者以另一种方式有效?

最佳答案

您可以使用 find list 上的扩展功能:

val eventId = 3
val event: Event? = eventList.find { it.id == eventId }

关于android - 在kotlin的自定义类型arraylist中按id搜索对象,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53319738/

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