I am new to Java 8. I have a list of objects of class A, where structure of A is as follows:
class A {
int name,
boolean isActive
}
Now I have a list of elements L of class A, in that list I want to update an element having name="test" with inactive=false.
I can do this very easily by writing a for loop and creating a new list.
But how would I do that using Java 8 stream API?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…