是否可以对带有索引的Stream<T>使用foreach方法?

forEachIndexed {index, value -> }上的List<T>一样?

最佳答案

除非您想继续使用Java的Streams,否则可以使用:asSequence

您的代码变为:
stream.asSequence().forEachIndexed {...}

09-27 05:22