vote up 6 vote down star
1

immutability, any good sources on writing immutable programs in a functional way with java?

shifting over to erlang - scala - clojure is not a possibility.

flag

73% accept rate
What do you mean by "in a functional way"? – cletus Jul 1 at 15:10
he means using the functional programming paradigm – skaffman Jul 1 at 15:15

5 Answers

vote up 5 vote down

Java Concurrency in Practice has lots of good information about immutability. Basically you can write functionally (without regard to state) if you're not sharing state between invocations, write your state immutably, or write statelessly. Can you post something more specific about what you're trying to accomplish?

link|flag
Man, I don't think I've ever seen a technical book on Amazon with that many great ratings... – John Munsch Jul 1 at 15:24
Steve, Erlang my moonlighter, is a heavy inspiration for me. I simply wish to adjust my Java coding habits - that is all. – Setori Jul 28 at 7:12
vote up 2 vote down

besides Java Concurrency in Practice, there also several good items in Effective Java (second edition)

link|flag
vote up 2 vote down

One thing to be careful of is if you use existing JVM libraries they may have nasties hidding inside - like use non-thread safe static variables. I think functional programming for concurrency is a great direction, but I think Erlang will always have the benefit of being designed for functional programming from the ground up. I think Scala will be big here, but suffer from the inability to guarantee isolatation of Actors (you cannot guarantee no mutable shared memory between actors/threads).

link|flag
vote up 0 vote down

Libraries like: Functional Java and lambdaj - and some others. Looks like this is a common requirement.

link|flag
The lambdaj library is really cool. Unfortunately, it's also really slow, from the tests I ran... approx 10x slower on the data sets I tested on. Shame, because I was very excited about it. – RHSeeger Jul 20 at 18:42

Your Answer

Get an OpenID
or

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