嵌套在科特林

时间:2018-08-31 06:49:30

标签: kotlin

我应该如何在Kotlin中管理嵌套的迭代器? 我使用了过渡变量,但是我敢肯定应该为此提供一些更美观的解决方案。

arr.forEach {
   val forEachIt = it //I need to get rid of this extra value
   val product = productList.firstOrNull { forEachIt.productId == it.productID }
}

0 个答案:

没有答案