是否可以对带有索引的Stream<T>
使用foreach方法?
像forEachIndexed {index, value -> }
上的List<T>
一样?
最佳答案
除非您想继续使用Java的Streams
,否则可以使用:asSequence
您的代码变为:stream.asSequence().forEachIndexed {...}
是否可以对带有索引的Stream<T>
使用foreach方法?
像forEachIndexed {index, value -> }
上的List<T>
一样?
最佳答案
除非您想继续使用Java的Streams
,否则可以使用:asSequence
您的代码变为:stream.asSequence().forEachIndexed {...}