vote up 3 vote down star
1

Does the Java standard library have any functional data structures, like immutable Sets, Lists, etc., with functional update?

flag

67% accept rate
Do you want a deep copy of all the objects in the list or simply a function that gives you a new list of pointers all to the same objects as the source? – Nathan Feger Nov 5 at 20:51
I want a persistent data structure for a Set not implemented in a silly way. For example, an immutable list could implement adding by copying all the elements into a new list and adding the element - O(n). Or it could be a linked list, add the element to the head, and return the head - O(1) – Claudiu Nov 5 at 20:59
there is no general way to "deep-copy" anything in Java. – Kevin Bourrillion Nov 5 at 22:50

8 Answers

vote up 7 vote down check

Functional java has Sets, Lists and more interesting abstractions.

link|flag
1  
+1 for being the only correct answer here. – Kevin Bourrillion Nov 5 at 22:49
neat, this looks promising. thanks! – Claudiu Nov 7 at 17:21
vote up 0 vote down

If you are interested in collections manipulation in a functional style give a look to lambdaj

link|flag
vote up 1 vote down

It's always nice to see Google Collections plugged, but no, we do not have this. I don't know of any Java library that does. Inside Google, we implemented some functional List structures, and guess what? No one uses them. So they aren't likely to become open-sourced any time soon.

link|flag
vote up -1 vote down

Strings and numbers are immutable in a functional way, but most collections are not (the immutable collections throw exceptions on add, remove, etc). CopyOnWriteArrayList and CopyOnWriteArraySet are the closest in that sense.

link|flag
vote up 0 vote down

Take a look at Google collections.

link|flag
vote up 2 vote down

Well, there are two possible approaches to "changing" an immutable collection:

  • Make a copy of it that includes the "change"

  • Create a new, different object that consists of a reference to the original object and a reference to a description of the change.

Clojure takes the latter approach, so it becomes fairly quick to create a lot of siblings of an original collection with minor corrections to each, with reasonable memory requirements. But most Java code tends to go for the first option.

For what it's worth, Google has created a handful of collections that support functional-style programming: http://code.google.com/p/google-collections/ but I haven't looked at them in depth.

link|flag
vote up 2 vote down

You don't need scala. Just pass your collection into:

java.util.Collections.unmodifiableCollection(/* Collection<? extends T> c */);
java.util.Collections.unmodifiableSet(Set s);
java.util.Collections.unmodifiableMap(Map m);
java.util.Collections.unmodifiableList(List l);

I just saw this from another SO question:

Google's ImmutableSet

http://google-collections.googlecode.com/svn/trunk/javadoc/com/google/common/collect/ImmutableSet.html

from the docs:

Unlike Collections.unmodifiableSet(java.util.Set), which is a view of a separate collection that can still change, an instance of this class contains its own private data and will never change. This class is convenient for public static final sets ("constant sets") and also lets you easily make a "defensive copy" of a set provided to your class by a caller.

edited to incorporate comment.

link|flag
+1: You were quickier =) There are by the way also unmodifiableList(), unmodifiableMap(), ans more methods available in java.util.Collections API: java.sun.com/javase/6/… – BalusC Nov 5 at 20:46
I want to add something to a Set, keeping the old Set the same, and returning a new Set. I dont think unmodifiableSet gives me that? – Claudiu Nov 5 at 20:47
@Claudiu yes, unmodifiableSet will certainly not do that. – Nathan Feger Nov 5 at 20:50
vote up 0 vote down

Sounds like you're looking for Scala. It compiles to .class, so that's good enough, right?

link|flag
hmm perhaps. It's just that we got some support code in a course that acts functionally (i.e. adding something to a structure returns a new version w/ the update), but it's written by just always copying the old structure and adding something new to it. it makes me sad. i wondered if there was an easy, better way, but I guess Java just makes it hard. – Claudiu Nov 5 at 20:43

Your Answer

Get an OpenID
or

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