Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I need a map function. Is there something like this in Java already?

(For those who wonder: I of course know how to implement this trivial function myself...)

share|improve this question
If not, it's trivial to define yourself. But I suppose google knows a dozen implementations? – delnan Oct 11 '10 at 15:02
2  
Duplicated (rather better) at stackoverflow.com/questions/3907412/… – Chowlett Oct 11 '10 at 15:03
2  
@Chris: How is it the same question? – Albert Oct 11 '10 at 15:12
It's not the same question. It's closely related though... – Jorn Oct 11 '10 at 15:12
If the answer to this question is yes, it answers also the other linked question. If the answer is no (and it seems so), they are completely unrelated. – Albert Oct 11 '10 at 15:17
show 2 more comments

4 Answers

up vote 24 down vote accepted

There is no notion of a function in the JDK as of java 6.

Guava has a Function interface though and the
Collections2.transform(Collection<E>, Function<E,E2>)
method provides the functionality you require.

Example:

// example, converts a collection of integers to their
// hexadecimal string representations
final Collection<Integer> input = Arrays.asList(10, 20, 30, 40, 50);
final Collection<String> output =
    Collections2.transform(input, new Function<Integer, String>(){

        @Override
        public String apply(final Integer input){
            return Integer.toHexString(input.intValue());
        }
    });
System.out.println(output);

Output:

[a, 14, 1e, 28, 32]
share|improve this answer
It's worth noting that while with Guava you can do this, you might not want to: code.google.com/p/guava-libraries/wiki/FunctionalExplained (read the "Caveats" section). – Adam Parkin Mar 7 at 22:32
@AdamParkin true, but I'm pretty sure that refers to more advanced functional concepts than this, otherwise they wouldn't have developed the transform() methods in the first place – Sean Patrick Floyd Mar 8 at 10:35
Actually, no, there is often a definite performance hit with functional idioms, which is why they stress you should only use the facilities if you are certain it meets the two criteria outlined: net savings of LOC for the codebase as a whole, and proven performance gains due to lazy evaluation (or at least not performance hits). Not arguing against the use of them, just indicating that if you're going to, you should heed the warnings of the implementers. – Adam Parkin Mar 8 at 16:45

There is a wonderful library called Functional Java which handles many of the things you'd want Java to have but it doesn't. Then again, there's also this wonderful language Scala which does everything Java should have done but doesn't while still being compatible with anything written for the JVM.

share|improve this answer
I am interested in how did they enable following syntax: a.map({int i => i + 42}); did they extend compiler? or added preprocessor? – Andrey Oct 11 '10 at 15:07
@Andrey - You can either ask them that yourself or check out the source code to see how it's done. Here's a link to the source: functionaljava.org/source – wheaties Oct 11 '10 at 15:09
1  
@Andrey: examples use syntax from BGGA closures proposal. While there is running prototype, it's not in 'official' Java yet. – Peter Štibraný Oct 11 '10 at 15:10
@Andrey: that syntax is part of a proposed specification for closures in Java (see second-to-last paragraph on homepage). There's only a prototypical implementation. – Michael Borgwardt Oct 11 '10 at 15:12
to be fair: scala is not the only choice. Groovy, Clojure, JRuby and probably many others all offer this functionality. – Sean Patrick Floyd Oct 11 '10 at 15:13
show 8 more comments

map(function,iterable) i think this style of coding is with functional style of language, languages that support passing function as a argument. So this is possibly not in java.

share|improve this answer
3  
Luckily this style of programming is becoming more popular in Java, even though Java was not explicitly designed to support it. – Jorn Oct 11 '10 at 15:15
agree with your comment. There are so many languages like javascript scala ruby using functional style or (lambda) programming. Which makes there code so dynamic. Java classicaly tries this through the use of annonymous inner classes. – sushil bharwani Oct 11 '10 at 15:20

This is another functional lib with which you may use map: http://code.google.com/p/totallylazy/

sequence(1, 2).map(toString); // lazily returns "1", "2"
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.