如何将这段代码转换为Java 8流。
试图为每个使用,但失败了。 For循环代码正常工作。
for(RestrictedInstrument restrictedInstrument : restrictedInstruments){
List<Identifier> identifierList = restrictedInstrument.getIdentifier();
setTicker(matrix, identifierList);
}
应使用矩阵Object和
setTicker()
调用identifierList
方法。 最佳答案
您可以只使用List.forEach()
:
restrictedInstruments.forEach(i -> setTicker(matrix, i.getIdentifier()));