vote up 9 vote down star
6

What makes Scala such a wonderful language, other than the type system? Almost everything I read about the language brings out 'strong typing' as a big reason to use Scala, but there has to be more than that. What are some of the other compelling and/or cool language features that make Scala a really useful tool?

flag

30% accept rate

12 Answers

vote up 0 vote down

Two killer features of Scala that I didn't see posted yet:

In effect, these features let you approximate (and in some ways surpass) Haskell's type classes.

link|flag
vote up 0 vote down

I want to add the multi-paradigm (OO and FP) nature gives Scala an edge over other languages

link|flag
vote up 5 vote down

It's a mash up of the best bits from a bunch of languages, what's not to love:

  • Ruby's terse syntax
  • Java's performance
  • Erlang's Actor Support
  • Closures/Blocks
  • Convenient shorthand for maps & arrays
link|flag
vote up 2 vote down

Just shortly:

  • You get the power and platform-independency of the Java libraries, but without the boilerplate and verbosity.
  • You get the simplicity and productivity of Ruby, but with static typing and compiled bytecode.
  • You get the functional goodnesses and concurrency support of Haskell, but without complete paradigm shift and with the benefits of object-orientation.

What I find especially attractive in all of its magnificient features, among others:

  • Most of the object-oriented design patterns which require loads of boilerplate code in Java are supported natively, e.g. Singleton (via objects), Adapter, Decorator (via traits and implicits), Visitor (via pattern matching), Strategy (via closures) etc.
  • You can define your domain models and DSLs very concisely, then you can extend them with the necessary features (notification, association handling; parsing, serialization), without the need of code generation or frameworks.
  • And finally, there is full interoperability with the well-supported Java platform. You can mix Java and Scala in both directions. There is not much penalty nor compatibility problems when switching to Scala after having experienced the annoyances of Java which make code hard to maintain.
link|flag
vote up 0 vote down

Expressiveness of control flow. For example, it's very common to have a collection of data which you need to process in some way. This might be a list of trades in which the processing involves grouping by some properties (the currencies of the investment instruments) and then doing a summation (to get totals-per-currency perhaps).

In Java this involves separating out a piece of code to do the grouping (a few lines of for-loop) and then another piece of code to do the summation (another for loop). In Scala, this type of thing is typically achievable in one line of code using functional programming and then folding, which reads very expressively l-to-r.

Of course, this is just an argument for a functional language over Java.

link|flag
vote up 0 vote down

I have to say, they meld object orientation and functional programming magnificently. I like Clojure better though.

link|flag
vote up 6 vote down

I'm new to Scala, but my impression is:

Really good JVM integration will be the driving factor. JRuby can call java and java can call JRuby code, but it's explicitly calling into another language, not the clean integration of Scala-Java. So you can use Java libraries, and even mix and match in the same project.

I started looking at scala when I had a realization that the thing which will drive the next great language is easy concurrency. The JVM has good concurrency from a performance standpoint. I'm sure someone will say that Erlang is better, but Scala is actually usable by normal programmers.

Where Java falls down is that it's just so painfully verbose. It takes way too many characters to create an pass a Functor. Scala allows passing functions as arguments.

It isn't possible in Java to create a union type, or to apply an interface to an existing class. These are both easy in Scala.

Static typing usually has a big penalty of verboseness. Scala eliminates this downside while still giving the upside of static typing, which is compile time type checking, and the it makes code assist in editors easier.

The ability to extend the language. This has been the thing that has kept Lisp going for decades, and that allowed Ruby on Rails.

link|flag
vote up 1 vote down

Here's a few fairly in depth explanations for the appeal of functional languages.

http://stackoverflow.com/questions/474497/how-why-do-functional-languages-specifically-erlang-scale-well/474594

link|flag
I'm actually a Ruby guy, mostly because I spent a long time with Perl, C, and a surprising amount of Lisp, so I'm already very sold on functional programming. :) – Don Werve Apr 7 at 19:19
vote up 13 vote down

Here are some of the things that made me favour Scala (over, say, usual Java):

a) Type inference. The Java way of doing it:

Map<Something, List<SomethingElse>> list = new HashMap<Something, List<SomethingElse>>()

.. is rather verbose compared to Scala. The compiler should be able to figure it out if you give one of these lists.

b) First-order functions. Again, this functionality can be emulated with classes, but it's ugly.

c) Collections that have map and fold. These two tie in with (b), and also these two are something I wish for every time I have to write Java.

d) Pattern matching and case classes.

e) Variances, which mean that if S extends T, then List[S] extends List[T] as well.

Throw in some static types goodness as well, and I was sold on the language quite fast.

link|flag
XML is an integral part of Scala. XML is legal syntax within the language. For example: def addressNode(line1 : String,line2 : String, city : String, state : String, country : String) = { <address> <line>{line1}</line> {if (line2 != null) <line>{line2}</line> else Text("")} <city>{city}</city> <state>{state}</state> <country>{country}</country> </address> } blog.lostlake.org/index.php?/archives/… – Gastoni Jul 24 at 18:21
vote up 2 vote down

Scalability

link|flag
vote up 3 vote down

Supposedly it's very easy to make Scala code run concurrently on multiple processors.

link|flag

Your Answer

Get an OpenID
or

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