Scala is a general purpose programming language principally targeting the Java Virtual Machine. Designed to express common programming patterns in a concise, elegant, and type-safe way, it fuses both imperative and functional programming styles. Its key features are: statically typed; advanced type-system with type inference; function types; pattern-matching; implicit parameters and conversions; operator overloading; full interop with Java

learn more… | top users | synonyms

231
votes
18answers
31k views

Is the Scala 2.8 collections library a case of “the longest suicide note in history”?

First note the inflammatory subject title is a quotation made about the manifesto of a UK political party in the early 1980s. This question is subjective but it is a genuine question, I've made it CW ...
178
votes
5answers
37k views

Scala vs. Groovy vs. Clojure

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.
157
votes
8answers
5k views

How can a time function exist in functional programming?

I've to admit that I don't know much about functional programming. I read about it from here and there, and so came to know that in functional programming, a function returns the same output, for same ...
142
votes
28answers
12k views

Hidden features of Scala

What are the hidden features of Scala that every Scala developer should be aware of? One hidden feature per answer, please.
116
votes
25answers
11k views

Common programming mistakes for Scala developers to avoid [closed]

In the spirit of Common programming mistakes for Java developers to avoid? Common programming mistakes for JavaScript developers to avoid? Common programming mistakes for .NET developers to avoid? ...
114
votes
10answers
15k views

Modern alternatives to Java [closed]

I have been a Java developer for 14 years and have written an enterprise-level (~500 kloc) Swing application that uses most of the standard library APIs. Recently, I have become disappointed with the ...
109
votes
23answers
33k views

Which is the best IDE for Scala development? [closed]

I like all three of the popular Java IDE's and all three have plug-ins for Scala. I'll probably try all three eventually, but since I'm totally new to the language I figured I'd ask which is the most ...
87
votes
5answers
25k views

Scala Programming for Android

I have followed the tutorial at Scala and Android with Scala 2.7.3 final. The resulting Android App works but even the most basic application takes several minutes (!) to compile and needs 900 kb ...
84
votes
14answers
23k views

Wanted: Good examples of Scala database persistence

I would like to use Scala to persist data to a relational database, so what I am looking for are examples of CRUD operations using Scala. I would like to code on a lower level of abstraction than ...
80
votes
15answers
8k views

What makes Scala's operator overloading “good”, but C++'s “bad”?

Operator overloading in C++ is considered by many to be A Bad Thing(tm), and a mistake not to be repeated in newer languages. Certainly, it was one feature specifically dropped when designing Java. ...
74
votes
12answers
10k views

Should I use Play or Lift for doing web development in Scala?

I'm stuck on whether I should focus on Play or Lift for doing web development in Scala. Play looks very polished. The Scala-specific tutorial looks amazing. Furthermore, since I've been coding in ...
71
votes
8answers
10k views

How to optimize for-comprehensions and loops in Scala?

So Scala is supposed to be as fast as Java. I'm revisiting in Scala some Project Euler problems that I originally tackled in Java. Specifically Problem 5 : "What is the smallest positive number that ...
69
votes
8answers
7k views

How do I get around type erasure on Scala? Or, why can't I get the type parameter of my collections?

It's a sad fact of life on Scala that if you instantiate a List[Int], you can verify that your instance is a List, and you can verify that any individual element of it is an Int, but not that it is a ...
61
votes
18answers
17k views

What Scala web-frameworks are available?

I've just started learning Scala and the first thing I'm going to implement is a tiny web-application. I've been using Erlang for the last year to implement server-side software, but I've never wrote ...
59
votes
8answers
10k views

Good use case for Akka

I have heard lots of raving about Akka framework (Java/Scala service platform), but so far have not seen many actual examples of use cases it would be good for. So I would be interested in hearing ...
59
votes
4answers
3k views

What do <:<, <%<, and =:= mean in Scala 2.8, and where are they documented?

I can see in the API docs for Predef that they're subclasses of a generic function type (From) => To, but that's all it says. Um, what? Maybe there's documentation somewhere, but search engines ...
58
votes
2answers
8k views

Scala 2.8 collections design tutorial

Following on from my breathless confusion, what are some good resources which explain how the new Scala 2.8 collections library has been structured. I'm interested to find some information on how the ...
58
votes
2answers
5k views

scala 2.8 breakout

In Scala 2.8, there is an object in scala.collection.package.scala: def breakOut[From, T, To](implicit b : CanBuildFrom[Nothing, T, To]) = new CanBuildFrom[From, T, To] { def apply(from: From) ...
56
votes
5answers
11k views

Scala doesn't have enums - what to use instead of an enum

Scala doesn't have type-safe enums like Java has. If I have a set of related constants then what is the best way in Scala to represent those constants?
53
votes
4answers
7k views

Scala actors: receive vs react

Let me first say that I have quite a lot of Java experience, but have only recently become interested in functional languages. Recently I've started looking at Scala, which seems like a very nice ...
52
votes
2answers
2k views

What are some compelling use cases for dependent method types?

Dependent method types, which used to be an experimental feature before, has now been enabled by default in the trunk, and apparently this seems to have created some excitement in the Scala community. ...
52
votes
8answers
13k views

Why would I use Scala/Lift over Java/Spring?

I know this question is a bit open but I have been looking at Scala/Lift as an alternative to Java/Spring and I wonder what are the real advantages that Scala/Lift has over it. From my perspective and ...
51
votes
3answers
1k views

Akka Actor not terminating if an exception is thrown

I am currently trying to get started with Akka and I am facing a weird problem. I've got the following code for my Actor: class AkkaWorkerFT extends Actor { def receive = { case Work(n, c) if n ...
51
votes
10answers
3k views

Building big, immutable objects without using constructors having long parameter lists

I have some big (more than 3 fields) Objects which can and should be immutable. Every time I run into that case i tend to create constructor abominations with long parameter lists. It doesn't feel ...
50
votes
5answers
8k views

What are the biggest differences between Scala 2.8 and Scala 2.7?

I've written a rather large program in Scala 2.7.5, and now I'm looking forward to version 2.8. But I'm curious about how this big leap in the evolution of Scala will affect me. What will be the ...
49
votes
30answers
6k views

Poll: What is stopping you from switching (from Java) to Scala? [closed]

What would make you to switch to Scala ? If you are negative on the switching to Scala, please state the reason as well (or upvote). As with all StackOverflow Poll type Q&As, please make ...
47
votes
18answers
2k views

Why Option[T]?

I am a beginner to functional programming and I have recently started studying Scala and I really love this language for the all goodies it provides like closures, pattern matching, currying etc. ...
46
votes
20answers
10k views

Learning Scala or Haskell

I'm considering dipping my toe in the functional programming world, and wondering if it would be better to start with Scala or Haskell. I'm coming at this primarily as a Python programmer. My only ...
45
votes
4answers
13k views

Can someone explain Scala's yield?

I understand Ruby and Python's yield. What does Scala's yield do?
44
votes
26answers
9k views

Is Scala the next big thing? [closed]

I've been learning Scala recently, and it seems like a very very promising general purpose programming language. It has all the good functional programming features, terse syntax, it runs on JVM and ...
43
votes
1answer
1k views

How do I apply the pimp-my-library pattern to Scala collections?

One of the most powerful patterns available in Scala is the "pimp-my-library" pattern, which uses implicit conversions to appear to add methods to existing classes without requiring dynamic method ...
43
votes
9answers
2k views

functional programming - Is Immutability Expensive?

Request: The question is two part. The first is conceptual, comparing functional and imperative programming from the perspective of cost of immutability. Second, about specifics of java/scala. ...
42
votes
2answers
2k views

Where does Scala look for implicits?

An implicit question to newcomers to Scala seems to be: where does the compiler look for implicits? I mean implicit because the question never seems to get fully formed, as if there weren't words for ...
42
votes
6answers
3k views

Good scalaz introduction

Recently scalaz caught my eye. It looks very interesting, but I have not found any good introduction to the library. Seems that scalaz incorporates a lot of ideas from haskell and mathematics. Most ...
42
votes
5answers
1k views

What does “abstract over” mean?

Often in the Scala literature, I encounter the phrase "abstract over", but I don't understand the intent. For example (http://www.artima.com/scalazine/articles/scalas_type_system.html), Martin ...
42
votes
7answers
15k views

On Performance and Java Interoperability: Clojure vs. Scala

I have already read various accounts of Clojure vs. Scala and while I realize that both have their place. There are a few considerations that I haven't acquired a complete explanation on when it ...
42
votes
9answers
22k views

Read entire file in Scala?

What's a simple and canonical way to read an entire file into memory in Scala? (Ideally, with control over character encoding.) The best I can come up with is: ...
42
votes
4answers
7k views

Is the Lift framework as “easy” as Ruby on Rails or Django?

Just wondering if anyone has experience with the three. I have used read through some RoR and used Django. They seem fairly easy to use. Is lift "easy" like these two are? I know easy is ...
41
votes
8answers
2k views

Any Real-World Experience Using Software Transactional Memory?

It seems that there has been a recent rising interest in STM (software transactional memory) frameworks and language extensions. Clojure in particular has an excellent implementation which uses MVCC ...
41
votes
5answers
9k views

Does the JVM prevent tail call optimizations?

I saw this on a question: Scala in particular doesn't support tail-call elimination except in self-recursive functions, which limits the kinds of composition you can do (this is a fundamental ...
40
votes
2answers
602 views

Why does a small change to this scala code make such a huge difference to performance?

I'm running on a 32-bit Debian/Squeeze system (a 2.5GHz Core2 CPU), sun-java6 6.24-1 but with the scala 2.8.1 packages from Wheezy. This code, compiled with scalac -optimise, takes over 30s to run: ...
39
votes
9answers
2k views

Are FP and OO orthogonal?

I have heard this time and again, and I am trying to understand and validate the idea that FP and OO are orthogonal. First of all, what does it mean for 2 concepts to be orthogonal? FP encourages ...
39
votes
3answers
1k views

What are your experiences developing in Scala/Lift?

I heard a lot of good things about Scala and the Lift Web framework recently, especially from Foursquare's guys hence, I might use this technology in my next projects. Are any of you Scala/Lift ...
39
votes
3answers
5k views

What are Scala continuations and why use them?

So I just finished "Programming in Scala" and I've been looking into the changes between Scala 2.7 and 2.8. The one that seems to be the most important is the continuations plugin but I don't ...
39
votes
6answers
12k views

What's the best Scala build system?

I've seen questions about IDE's here -- Which is the best IDE for Scala development? and What is the current state of tooling for Scala?, but I've had mixed experiences with IDEs. Right now, I'm using ...
37
votes
10answers
5k views

Yet another Haskell vs. Scala question

I've been using Haskell for several months, and I love it—it's gradually become my tool of choice for everything from one-off file renaming scripts to larger XML processing programs. I'm definitely ...
37
votes
6answers
4k views

What is the difference between scala self-types and trait subclasses?

Self-types seem to be important so I want to know why they are useful. From what I can gather, a self-type for a trait A: trait B trait A { this: B => } says that "A cannot be mixed into a ...
36
votes
4answers
1k views

Does being a competent scala programmer require you to be a competent java programmer?

I am a big fan of Scala aesthetically, and of a lot of the conceptual work put into things like its typing system and libraries. However, as I have begun tinkering with Scala (and seen some of my ...
36
votes
1answer
2k views

What is meant by Scala's path-dependent types?

I've heard that Scala has path-dependent types. It's something to do with inner-classes but what does this actually mean and why do I care?
36
votes
14answers
3k views

Calculating the Moving Average of a List

This weekend I decided to try my hand at some Scala and Clojure. I'm proficient with object oriented programming, and so Scala was easy to pick up as a language, but wanted to try out functional ...

1 2 3 4 5 150