Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
159 views
in Technique[技术] by (71.8m points)

java 8 - Updating an attribute of an element in list with matching attribute

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

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

You can do it like this.

L.stream()
.filter(item-> item.getName().equals("test"))
.forEachOrdered(a -> a.setActiv(false));

I believe data type of name should be String not int in your question


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

2.1m questions

2.1m answers

60 comments

56.9k users

...