This question was asked on my blog and I thought it would be interesting to garner a range of opinions rather than just my own.

I don't know of any measurements that show that Scala's popularity is NOT growing, but I have noticed on sites like http://langpop.com/ that Scala tends to be way down the list.

link|improve this question

73% accept rate
1  
I'm sure some people will want to ask the question: "Does it actually matter whether Scala is popular or not?" It's a perfectly valid question, but there is probably a better place to discuss it than in the comments of this question. ;) – Graham Lea Dec 18 '10 at 9:49
4  
I asked this question myself, and the only explanation I could think of is that Java programmers suffer from the Stockholm Syndrom... – Landei Dec 18 '10 at 18:15
"Range of opinions" questions are better asked over at Programmers. (Hopefully we'll be able to migrate questions there soon.) – Bill the Lizard Dec 19 '10 at 2:46
feedback

closed as off topic by Henk Holterman, Bill the Lizard Dec 19 '10 at 2:46

Questions on Stack Overflow are expected to generally relate to programming or software development in some way, within the scope defined in the faq.

13 Answers

up vote 15 down vote accepted

Top ten observations that will scare Joe the Developer...

1) Type system.

Joe saw that just yesterday. He's still shaking his head.

orNull [A1 >: A](implicit ev : <:<[Null, A1]) : A1

2) Overuse of cryptic operators (see above)

3) Monads. Joe has heard a dozen different explanations, some involving elephants, but he's still no closer to knowing what it's good for.

4) Functional emphasis. Joe comes from the OO world, like most people still. He has to stop and think whenever he sees functional use in code.

5) Academic/Functional culture. Joe keeps reading postings and threads online that remind him how out of his depth he is.

6) Type declaration. Joe is used to String city, not city : String.

7) Complex collection library. Joe has spent years with Java Collection classes. Scala's library isn't like what he's used to.

8) Joe sees very few (if any) job postings for Scala developers.

9) Joe's cool friends are all doing Ruby on Rails, Python or Node.

10) Scala looks like it will remain a fringe language to Joe.

Please don't reply with the valid reasons for each point. That's really not what was asked here. I know solid developers who had a look at Scala and rejected it for some of the reasons above. I personally think that inscrutable method declarations is a serious impediment. Even Odersky seemed to agree at a previous conference (and he mentioned providing a simpler type decl to complex libraries). In the mean time, "Scala = too complex" will continue being the first impression many have.

link|improve this answer
4  
Trolling. "There is no Joe the Developer". Putting a straw man in front of your opinion doesn't make it sound more credible. Remember: Most programmers think that they are way smarter than their fellow programmer. Hint: Most of them are not, including you. – soc Dec 18 '10 at 16:46
4  
@soc - it's nothing to do with trolling. Those issues are exactly the sort of reasons developers might be reluctant to learn any language. Confusing-looking code, unfamiliar paradigm, lack of job openings -- learning new languages takes effort, there's no reason to act like it's an assault on your favorite language – bemace Dec 18 '10 at 18:55
6  
@soc So, this answer upsets you so much that you even resort to personal insults? I tried to list the areas where Scala would look scary for the masses coming from Java/C#/C++. It has nothing to do with whether they're good features or not. It's about whether they will look daunting to newcomers to the point that they look elsewhere. – Alkaline Dec 18 '10 at 23:28
Due to most of these points, I've embraced clojure. I have a blog with dozen posts about scala, but I have to agree with Alkaline. – paulosuzart Dec 19 '10 at 23:55
feedback

People tend to try to introduce the advance functionalities of Scala too soon. This makes it hard for most people to look further to the language. It will be much much easier if people just focus on OO-functionalities of Scala (for example how to convert Java program to Scala one) on first step and introduce the advance functionalities later on.

link|improve this answer
5  
One point that's probably undersold is that Scala does OO much better than Java. For example, its constructor syntax makes classes much easier to write - it cuts down on constructor boilerplate by a factor of about 4. At first this sounds like a little thing, but it really makes object-oriented programming with lots of classes flow a lot more smoothly. – MJP Dec 18 '10 at 13:09
feedback

For me, it was

  1. incompatible version upgrades making me feel i'd have to relearn the language all the time.
  2. it seemed i'd have understand lots of internals to even know how to use the language.

But I learned Scala in a day after reading Milton Keynes' Introduction to Scala series, this Scala Syntax Primer, Scala for Java Refugees, and Graham's Guide to Learning Scala. I now feel i know enough to write real code and I'll never save another file as .java.

For me, those were the best posts about Scala. I've read tons about Scala and knew it was a great language but never felt i knew how to use Scala. These four were the ones that really worked to make me believe i understand Scala.

link|improve this answer
feedback

Nothing, really. Then again, there are many languages and very few, by definition, achieve massive popularity. It usually requires strong corporate backing, like java, or popular projects that use it, like C, or, recently, Python and Ruby.

In that sense, I think the greatest hope for Scala to gain a stronger presence is for Akka to become a popular framework in java.

However, despite what these sites are saying, I'm seeing increased adoption and offers on it.

link|improve this answer
feedback

Another potential barrier is the opinion held by some that Scala is chiefly an academic language, or that it can only be comprehended by elite programmers. (Hang on - aren't we all elite?) I don't think that this is true, but I think the community is in danger of fostering this opinion of Scala. I do find that the majority of Scala blogs and many of the posts on the Scala mailing list are beyond my comprehension (and care factor, for that matter). If this impression of complexity becomes widespread, I think it would eventually have the effect of discouraging people from even trying the language to see for themselves.

Some people are trying to counter this trend by highlighting the pragmatic benefits of Scala and suggesting that you don't need to know and use all the high-cognitive features in order to get work done. I think that a greater focus on pragmatism within the community (especially amongst bloggers and authors) could be the single best thing that would increase Scala's popularity.

link|improve this answer
feedback

I don't think there is anything preventing it from growing in popularity except ignorance. I remember what it was like when Java was introduced and we had similar questions (Is Java too simple to gain popularity ;).

There is a lot to scala and you can do sophisticated things with it.

What might help mortals is complete, straight forward examples of how to use aspects of the language which they are already familiar with in Java.

Having said all that, the software industry needs to grow up and accept that writing high quality, robust software requires experts. No one asks "is microwave electronics too complicated or academic to be popular", that would be a nonsense.

Saying that something with a solid grounding in maths with proven benefits is too academic really is just a reflection of the abilities of the person making that claim.

link|improve this answer
There's way more coding to do than there are “superstar” programmers, so languages that are direct enough that “mortal” programmers can use will have an advantage. Moreover, it seems that many programmers prefer languages that are not very symbol-heavy; they prefer keywords to operators… – Donal Fellows Dec 18 '10 at 19:09
feedback

The bad IDE support is the real adoption killer.

I would realy love to start using scala. But before i start accepting it there are exact 2 basic needs which need to be fulfilled.

  • smooth maven integration (in my case m2eclipse): i want the ability to have one scala module while all other project modules are still pure java / ajdt / whatever
  • smooth IDE integration

With smooth IDE integration i mean: Whenever i navigate through source code, it must be possible. Eclipse F3 must be good enough to move between scala and java code without feeling the border. Whenever i refactor something it must work. And not like current situation: Refactor a class name and the file name is untouched. Refactor a getter and other code occurences are broken because the refactoring is not aware of the special meaning of "_".

Maybe my information is wrong, but as far as i know the scala core developers are not using a common java ide like netbeans/idea/eclipse. In my opionion this is exactly the reason why scala does not gain traction. If they want to reach java developers they need to learn how most developers are developing java. They cant learn it when they bypass javas commonly used tooling.

Or is scala's focus only to attract developers from other languages like python/ruby/whatever? In this case, please stick to your vi/emacs/whatever.

Thats not meant as offensive but i honestly believe that this is the core issue. I am well aware that switching to a different IDE is pain. But thats exactly what im trying to say: switch and learn the pain normal java developers are feeling when they get in contact with scala.

I also mentioned maven on purpose. The SBT is the second thing killing adoption. Its simple: most companies have already a huge code base. They dont like it when there is something new in place which feels like an alien. Yes i know that maven is crap in many aspects but in comparison to SBT it has traction and many people are using it. I know not everything in the wild is mavenized, but the things which are not mavenized are most probably ant based and we all know that more and more projects start avoiding ant. (Yeah and some projects start avoiding maven, but this does not indicate that maven has failed yet)

regards, cybi

link|improve this answer
Odersky and some others are now using Eclipse for their Scala development. I've mostly used Scala with maven not with SBT, and it works fine. – Ricky Clarkson Nov 30 '11 at 14:21
feedback

One barrier that I think will prevent Scala from growing is that it's a multi-paradigm language, and most universities tend to only teach single-paradigm languages (because one paradigm is all they can fit into a semester). So graduates will come out of uni with Java or C++ or maybe Haskell skills, but may never have heard of Scala, and may never bother to try it out once they're getting paid to code Java.

link|improve this answer
2  
C++ is multi-paradigm too. – usta Dec 18 '10 at 9:55
1  
As a counterexample: scala-lang.org/node/7884 – pedrofurla Dec 18 '10 at 11:10
1  
Thats a pretty sad state of affairs if its true - which I suspect it is. – Channing Walton Dec 18 '10 at 11:40
feedback

For me the fact that the compiler is infuriatingly slow. 9 seconds to run a few lines of code just breaks my concentration and takes the fun out.

What F# also has on it is the interactive mode where you can highlight a bunch of lines and press CTRL-Enter to execute, just like you can in Sql. In every day use that is so incredibly useful and fast to develop stuff and just get things done.

Apart from that I really like the language, it's very concise and effective. On Intellij a lot of the old gripes are gone. Just speed it up and make it more interactive, then I see a bright future. Java is jshowing it's age, on the JVM Scala seems the best next thing.

link|improve this answer
Scala has an interactive interpreter as well. You might want to use that to test a few lines of code at a time. – MJP Dec 18 '10 at 13:17
I've seen it but that makes you type it line by line. With Fs you can highlight a bunch of lines from a script and then run them. Change a few (with intellisense etc), highlight and run again etc. Much better. It shouldn't be too hard to hook up the scala interactive to the IDE like that. – gjvdkamp Dec 18 '10 at 13:41
I agree about the compiler being slow. This can be solved by using fsc, but it's not practical for everyone. – Madoc Dec 18 '10 at 16:42
You can run Scala programs as scripts, which solves the issue of slowness of compilation (I think it's just $ scala some_file.scalaor something like that, I'm pretty new) which solves the issue of some people's ever short attention span. It also happens that while the compiler is slow to compile, it produces incredibly fast executables. – Rafe Kettler Dec 18 '10 at 16:55
You mean you want a GUI to run the lines for you, instead of highlighting them and pasting them into the REPL? That would be nice, I guess, but it would be strange if someone chose one language instead of another because drag Ctrl-C click Ctrl-V was too much more typing than drag F9 (or whatever the "run this" key is in F#). – Rex Kerr Dec 19 '10 at 0:34
show 2 more comments
feedback

Nothing. Popularity and adoption is rising, surprisingly even from businesses which are known to be very conservative like banks.

IDE support is pretty impressive (IntelliJ), documentation is pretty good (especially ScalaDoc is a massive improvement over JavaDoc) and people keep writing and updating books (e. g. Programming in Scala's 2nd Edition)

Scala is at par or has overtaken languages which were on the market for more than 20 years.

While few languages really rise to the fame of C or Java that doesn't say anything about their quality (look at the adoption of PHP as a counter-example).

If the JVM survives as the dominant platform (despite Oracle ruining Java), Scala will be the only way to go. If the JVM dies, porting Scala to less advanced platforms (.NET, LLVM?, Parrot?) may hurt Scala's adoption in the long term.

link|improve this answer
.NET less advanced than JVM? Scala could benefit hugely from .NET's tail-calls and reified generics and value types. – Stephen Swensen Jun 17 '11 at 19:09
Scala benefits immensely from the performance, the JIT optimizations and the stability of HotSpot. Yes, tail-calls would be nice, but reification would be a catastrophe. There is no scientific or practical evidence of a reified runtime typesystem with higher-kinded and turing-complete times which could even considered 10% working. – soc Jun 17 '11 at 19:47
But what about eliminating boxing and unboxing for simple generic collections of primitives? Certainly it could benefit from specific optimizations like that? You may be interested in: scala-lang.org/node/10299 – Stephen Swensen Jul 19 '11 at 12:30
Scala can already eliminate boxing/unboxing without needing reified generics. Scala on .NET will afaik use the same erasure semantics as on the JVM. – soc Jul 19 '11 at 21:26
I'm fascinated by how Scala is able to eliminate boxing/unboxing without needing reified generics, can you point me to any literature on this feature? – Stephen Swensen Jul 20 '11 at 0:36
show 2 more comments
feedback

Lack of professional support. That made Scala "risky" in the eyes of more conservative companies. Now there is M. Odersky's new company Scala Solutions, working on migration tools, providing training courses and consulting (and probably soon certifications).

link|improve this answer
They are also combatting this now with the creation of typesafe.com – Graham Lea Oct 7 '11 at 9:06
feedback

What of the think that Scala lacks is a good IDE integration. I mean to say that the Eclipse plugin is still not as a good as the Java plugin. Standard Java programmer are used to very good IDE and if they can't have such tools with Scala they will hesitate to use Scala at all in real projects.

It is going in the good direction though, as the Scala Eclipse plugin has progress a lot recently (still no enough though). Another problem, already mentioned is that with a consequent project mixing java and Scala code, the compilation can be very (very!) slow. It's a big problem too.

link|improve this answer
3  
If you're not hooked on Eclipse, Intellij is pretty good. Just tick the box at the plugins section and you're good to go. – gjvdkamp Dec 18 '10 at 13:45
1  
IDE integration == Eclipse plugin? Shouldn't you at least try Netbeans and IntelliJ before making overly broad claims? – soc Dec 18 '10 at 17:00
feedback

Factors that may contribute to Scala's adoption:

  1. JVM-based language
  2. Java interoperability
  3. Concurrency support superior to that of Java
  4. More expressive / powerful than Java (closures, type system, etc.)

Factors that may hinder its adoption:

  1. Syntax will scare off mediocre and below-average programmers (i.e. points 1,2, and 3 of Alkaline's answer)
  2. It's often counter-productive to introduce a new language to an existing code base / team
  3. Competition with other growing JVM-based languages (e.g. Groovy, Clojure)
link|improve this answer
feedback

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