I have a list of strings and i want to perform the same operation on all of the strings in the list.
is it possible without performing a loop?
thanks.
|
|
|
You could use apache commons util. |
|||
|
|
|
Well something's got to loop, somewhere - if you want to abstract that into your own method, you could do so, but I don't believe there's anything built into the framework. Guava has various methods in When Java eventually gets closures, this sort of thing will become a lot more reasonable - at the moment, specifying the "something" operation is often more effort than it's worth compared with hard-coding the loop, unfortunately. |
|||||||
|
|
You could do it recursively, but I don't see why you'd want to. You may be able to find something similar to Python's map function (which, behind the scenes, would either be a loop or a recursive method) Also note that strings are immutable - so you'll have to create 'copies' anyway. |
|||
|
|
|
sorry, you have to iterate through the list somehow, and the best way is in a loop. |
|||
|
|
|
Depending on what you mean by no loop, this may interest you: a map function for java. http://www.gubatron.com/blog/2010/08/31/map-function-in-java/ ...there's still a loop down inside of it. |
|||
|
|
|
In Java you'll need to iterate over the elements in the Collection and apply the method. I know Groovy offers the * syntax to do this. You could create an interface for your functions e.g. with an apply method and write a method which takes your Collection and the interface containing the function to apply if you want to add some general API for doing this. But you'll need the iteration somewhere! |
|||
|
|
|
Why do you not want to perform a loop? If it's computational complexity, then no, it's unavoidable. All methods will essentially boil down to iterating over every item in the list. If it's because you want something cleaner, then the answer depends on what you think is cleaner. There are various libraries that add some form of functional map, which would end up with something like:
This is obviously more long winded and complex than a simple loop
But it does offer reusability.
But probably you don't need this. A simple loop would be the way to go. |
|||
|
|
|
Use divide and conquer with multithreaded traversal. Make sure you return new/immutable transformed collection objects (if you want to avoid concurrency issues), and then you can finally merge (may be using another thread which will wake up after all the worker threads finished transformer tasks on the divided lists?). If lack of memory in creating these intermediate collections, then synchronize on your source collection. Thats the best you can do. |
|||
|
|
You have to perform the operation on each reference variable to the Strings in the List, so a loop is required. If its at the List level, obviously there are some operations (removeAll, etc.). |
|||
|
|