I have a list of Objects, each of which has a boolean "selected" property. I want these in a set if the "selected" property is true. Other than a for loop through the objects adding each to the set, is there another way to achieve this?
|
|
For something this simple just write a loop and be done with it. If this is a pattern you're going to implement over and over: (untested so there may be a typo or two)
And the invocation
Implementations of |
|||||||
|
|
You can use any functional java library for it. For example, from my experience with Lambdaj ( http://code.google.com/p/lambdaj/ ):
|
|||
|
|
|
if you used java 8 you could do this :
Assuming |
|||||||
|
|
Hm, I guess what you're searching for is a functional approach. I would recommend taking a look on either lamdaj (if you want to stick to Java and need an API only) or Scala (if you would like a richer set of features). An example The imperative version:
You can do it in one line with lambdaj:
|
||||
|