Python-like list comprehension in Java - Stack Overflow most recent 30 from stackoverflow.com2009-12-21T15:07:45Zhttp://stackoverflow.com/feeds/question/899138http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/899138/python-like-list-comprehension-in-java4Python-like list comprehension in Javaeuphoria832009-05-22T17:57:13Z2009-05-22T20:26:30Z
<p>Since Java doesn't allow passing methods as parameters, what trick do you use to implement Python like list comprehension in Java ?</p>
<p>I have a list (ArrayList) of Strings. I need to transform each element by using a function so that I get another list. I have several functions which take a String as input and return another String as output. How do I make a generic method which can be given the list and the function as parameters so that I can get a list back with each element processed. It is not possible in the literal sense, but what trick should I use ?</p>
<p>The other option is to write a new function for each smaller String-processing function which simply loops over the entire list, which is kinda not so cool.</p>
http://stackoverflow.com/questions/899138/python-like-list-comprehension-in-java/899165#8991654Answer by Nat for Python-like list comprehension in JavaNat2009-05-22T18:02:12Z2009-05-22T18:31:52Z<p>The <a href="http://code.google.com/p/google-collections/" rel="nofollow">Google Collections library</a> has lots of classes for working with collections and iterators at a much higher level than plain Java supports, and in a functional manner (filter, map, fold, etc.). It defines Function and Predicate interfaces and methods that use them to process collections so that you don't have to. It also has convenience functions that make dealing with Java generics less arduous. </p>
<p>I also use <a href="http://hamcrest.googlecode.com" rel="nofollow">Hamcrest</a>** for filtering collections.</p>
<p>The two libraries are easy to combine with adapter classes.</p>
<p><hr /></p>
<p>** Declaration of interest: I co-wrote Hamcrest</p>
http://stackoverflow.com/questions/899138/python-like-list-comprehension-in-java/899172#89917211Answer by mmyers for Python-like list comprehension in Javammyers2009-05-22T18:03:05Z2009-05-22T18:57:57Z<p>Basically, you create a Function interface:</p>
<pre><code>public interface Func<In, Out> {
public Out apply(In in);
}
</code></pre>
<p>and then pass in an anonymous subclass to your method.</p>
<p>Your method could either apply the function to each element in-place:</p>
<pre><code>public static <T> void applyToListInPlace(List<T> list, Func<T, T> f) {
ListIterator<T> itr = list.listIterator();
while (itr.hasNext()) {
T output = f.apply(itr.next());
itr.set(output);
}
}
// ...
List<String> myList = ...;
applyToListInPlace(myList, new Func<String, String>() {
public String apply(String in) {
return in.toLowerCase();
}
});
</code></pre>
<p>or create a new <code>List</code> (basically creating a mapping from the input list to the output list):</p>
<pre><code>public static <In, Out> List<Out> map(List<In> in, Func<In, Out> f) {
List<Out> out = new ArrayList<Out>(in.size());
for (In inObj : in) {
out.add(f.apply(inObj));
}
return out;
}
// ...
List<String> myList = ...;
List<String> lowerCased = map(myList, new Func<String, String>() {
public String apply(String in) {
return in.toLowerCase();
}
});
</code></pre>
<p>Which one is preferable depends on your use case. If your list is extremely large, the in-place solution may be the only viable one; if you wish to apply many different functions to the same original list to make many derivative lists, you will want the <code>map</code> version.</p>
http://stackoverflow.com/questions/899138/python-like-list-comprehension-in-java/899429#8994293Answer by unknown (google) for Python-like list comprehension in Javaunknown (google)2009-05-22T18:54:46Z2009-05-22T20:26:30Z<p>Apache Commons <a href="http://commons.apache.org/collections/api-release/org/apache/commons/collections/CollectionUtils.html#transform%28java.util.Collection,%20org.apache.commons.collections.Transformer%29" rel="nofollow">CollectionsUtil.transform(Collection, Transformer)</a> is another option.</p>