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?
|
6
|
|
|
|
|
|
Here are some of the things that made me favour Scala (over, say, usual Java): a) Type inference. The Java way of doing it:
.. 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 d) Pattern matching and case classes. e) Variances, which mean that if Throw in some static types goodness as well, and I was sold on the language quite fast. |
|||
|
|
|
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. |
|||
|
|
|
|
It's a mash up of the best bits from a bunch of languages, what's not to love:
|
||
|
|
|
|
Supposedly it's very easy to make Scala code run concurrently on multiple processors. |
||
|
|
|
|
Just shortly:
What I find especially attractive in all of its magnificient features, among others:
|
||
|
|
|
|
Here's a few fairly in depth explanations for the appeal of functional languages. |
||
|
|
|
I have to say, they meld object orientation and functional programming magnificently. I like Clojure better though. |
||
|
|
|
|
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. |
||
|
|
|
|
I want to add the multi-paradigm (OO and FP) nature gives Scala an edge over other languages |
||
|
|
|
|
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. |
||
|
|
