vote up 20 vote down star
7

Can someone please explain the major differences between Scala, Groovy and Clojure. I know each of these compiles to run on the JVM but I'd like a simple comparison between them.

flag

50% accept rate
How come this is the 1st result returned by google ???!!!! I am really really curious about it! – Oscar Reyes Aug 22 at 0:24
17 minutes ago! google's legion of crawlers is pretty efficient. – Jimmy Aug 22 at 0:26
@Jimmy it was 2 minutes after the post. But how can this be a relevant link when there is no ( well at that time there was NO answer!! ) – Oscar Reyes Aug 22 at 0:32
@Oscar: google is so smart that it can now even predict that a useful information will appear at certain places. :-D just kidding. But really, I think it's an evidence that StackOverflow is doing really well. – tim_wonil Aug 22 at 15:42

4 Answers

vote up 48 vote down check

Groovy is a dynamically typed scripting language, whose syntax is very close to Java. It's good for fast prototyping, scripts, and learning dynamic languages without having to learn a new syntax (assuming you know Java).

Clojure is a dialect of Lisp with a few advanced features like Software Transactional Memory. If you like Lisp and would like to use something like it under the JVM, Clojure is for you. It's possibly the most functional JVM language, and certainly the most famous one. Also, it has a stronger emphasis on immutability than other Lisp dialects, which takes it closer to the heart of functional language enthusiasts.

Scala is a fully Object Oriented language, more so than Java, with one of the most advanced type systems available on non-research languages, and certainly the most advanced type system on the JVM. It also combines many concepts and features of functional languages, without compromising the object orientation, but its compromise on functional language characteristics put off some enthusiasts of the latter.

While Groovy has good acceptance and a strong web framework in Grails, I personally think it is a language with limited utility, particularly as Jython and JRuby start making inroads on the JVM-land, compared to the others.

Clojure, even discounting some very interesting features, has a strong appeal just by being a Lisp dialect on JVM. It might limit its popularity, granted, but I expect it will have loyal community around it for a long time.

Scala can compete directly with Java, and give it a run for its money on almost all aspects. It can't compete in popularity at the moment, of course, and the lack of a strong corporate backing may hinder its acceptance on corporate environments. It's also a much more dynamic language than Java, in the sense that the language evolve. From the perspective of the language, that's a good thing. From the perspective of users who plan on having thousands of lines of code written on it, not so.

As a final disclosure, I'm very familiar with Scala, and only acquainted with the other two.

link|flag
4  
A very good comparison! Obviously biased in favor of Scala and (to a lesser extent) static typing, but quite nice none-the-less. – Daniel Spiewak Aug 22 at 4:43
3  
You might add the point that Clojure has greater emphasis on immutability than other Lisps. – Nathan Sanders Aug 22 at 15:55
Got it. I'm trusting you on this, Nathan! :-) – Daniel Aug 22 at 23:20
1  
Very biased against Groovy. I'd add that Groovy is closest syntactically of all the alternate JVM languages to Java (except jJava ;-) and will be the easiest of them for most developers to pick up. It supports both dynamic and static typing. It also has cleaner integration with Java (Both Groovy calling Java classes and vice versa) than Scala or Closure. Pigeon-holing it by saying it's only good for prototyping, scripts and learning is really only the opinion of Daniel and in no way reflects how other people are using it. – hohonuuli Aug 24 at 16:20
3  
@hohonuuli I said its syntax is very close to Java, endorsed Grails and indicated it was deficient in my opinion. But it doesn't support static typing, just a type annotation which doesn't really enforce type -- look it up. It might have slightly cleaner integration with Java than Scala, but most Scala programmers wouldn't even know it, as most stuff just works. I stand by my words -- it can't compete with Scala as far as static typing goes, Jython and JRuby are more popular dynamic languages, and it isn't really functional. It's only clear advantage is being a Java-like dynamic language. – Daniel Aug 24 at 21:31
show 1 more comment
vote up 4 vote down

They can be differentiated with where they are coming from or which developers they're targeting mainly.

Groovy is a bit like scripting version of Java. Long time Java programmers feel at home when building agile applications backed by big architectures. Groovy on Grails is, as the name suggests similar to the Rails framework. For people who don't want to bother with Java's verbosity all the time.

Scala is an object oriented and functional programming language and Ruby or Python programmers may feel more closer to this one. It employs quite a lot of common good ideas found in these programming languages.

Clojure is a dialect of the Lisp programming language so Lisp, Scheme or Haskell developers may feel at home while developing with this language.

link|flag
1  
Scala isn't really a functional programming language. It is an object oriented programming language first, with functional features. – Daniel Aug 22 at 2:40
I have to say, this answer feels a lot like a shot in the dark. I think a good case could be made that Python is closer to Groovy than to Scala, and Ruby is (in my opinion) not too close to any of the above, perhaps closest again to Groovy. Haskell is not too much like (Common) Lisp or Scheme (and thus not much like Clojure). To me, this answer feels (at best!) like "I don't know either, let me Wikipedia that for you". – John Y Aug 22 at 3:05
@Daniel I would argue that Scala is a functional language by most definitions. Actually, I have argued in the past (more than once) that Scala is not functional, but I have since modified that view. While it is true that some functional idioms are not as elegant in Scala as in other languages, the fact remains that all of the core features of impure functional languages (function values, immutability, currying) are present and idiomatic. This to me says Scala is functional and object-oriented. – Daniel Spiewak Aug 22 at 4:45
Scala is an imperative language with some functional features. If people continue to call a language functional as soon as it adopts idioms from the functional world then the term will become just another marketing term. Might as well start calling C++ functional and Haskell imperative. – jon hanson Aug 22 at 15:19
I opened this post as a community wiki because generally there's no one single answer when you're comparing two languages. I've played around with all three of them but never really went deep with any. I was generally talking about the syntax and idioms. – Mehmet Duran Aug 22 at 15:35
show 4 more comments
vote up 1 vote down

I recommend interview with Venkat Subramaniam by Scott Davis.

link|flag
vote up 0 vote down

Obviously, the syntax are completely different (Groovy is closest to Java), but I suppose that is not what you are asking for.

If you are interested in using them to script a Java application, Scala is probably not a good choice, as there is no easy way to evaluate it from Java, whereas Groovy is especially suited for that purpose.

link|flag
I don't understand your point about using Scala to script Java. You can certainly write a Scala script that drives Java code; no eval required. – Daniel Yankowsky Aug 23 at 0:55
@Daniel, please see the question about using Scala for scripting that I linked. The accepted answer there is that the lack of an "eval" facility and javax.scripting support makes it trickier to use Scala to script a Java application then it is with, say, Groovy. – Thilo Aug 24 at 0:00

Your Answer

Get an OpenID
or
never shown

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