vote up 17 vote down star
9

I've written a rather large program in Scala 2.75, 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 biggest differences between these two versions of Scala? And perhaps most importantly:

  • Will I need to rewrite anything?
  • Do I want to rewrite anything just to take advantage of some cool new feature?
  • What exactly are the new features of Scala 2.8 in general?
flag

3 Answers

vote up 15 vote down check

You can find here a preview of new feature in Scala2.8 (April 2009), completed with recent this article (June 2009)

  • Named and Default Arguments
  • Nested Annotations
  • Package Objects
  • @specialized
  • Improved Collections (some rewrite might be needed here)
  • REPL will have command completion (more on that and other tricks in this article)
  • New Control Abstractions (continuation or break)
  • Enhancements (Swing wrapper, performances, ...)

"Rewriting code" is not an obligation (except for using some of the improved Collections), but some features like continuation (Wikipedia: an abstract representation of the control state, or the "rest of computation" or "rest of code to be executed") can give you some new ideas. A good introduction is found here, written by Daniel (who has also posted a much more detailed and specific answer in this thread).

Note: Scala on Netbeans seems to work with some 2.8 nightly-build (vs. the official page for 2.7.x)

link|flag
vote up 12 vote down

VonC's answer is hard to improve on, so I won't even try to. I'll cover some other stuff not mentioned by him.

First, some deprecated stuff will go. If you have deprecation warnings in your code, it's likely it won't compile anymore.

Next, Scala's library is being expanded. Mostly, common little patterns such as catching exceptions into Either or Option, or converting an AnyRef into an Option with null mapped into None. These things can mostly pass unnoticed, but I'm getting tired of posting something on the blog and later having someone tell me it's already on Scala 2.8. Well, actually, I'm not getting tired of it, but, rather, and happily, used to it. And I'm not talking here about the Collections, which are getting a major revision.

Now, it would be nice if people posted actual examples of such library improvements as answers. I'd happily upvote all such answers.

REPL is not getting just command-completion. It's getting a lot of stuff, including the ability to examine the AST for an object, or the ability to insert break points into code that fall into REPL.

Also, Scala's compiler is being modified to be able to provide fast partial compilation to IDEs, which means we can expect them to become much more "knowledgable" about Scala -- by querying the Scala compiler itself about the code.

One big change is likely to pass unnoticed by many, though it will decrease problems for library writers and users alike. Right now, if you write the following:

package com.mystuff.java.wrappers

import java.net._

You are importing not Java's net library, but com.mystuff.java's net library, as com, com.mystuff, com.mystuff.java and com.mystuff.java.wrappers all got within scope, and java can be found inside com.mystuff. With Scala 2.8, only wrappers gets scoped. Since, sometimes, you want some of the rest to be in Scope, an alternative package syntax is now allowed:

package com.mystuff.factories
package ligthbulbs

which is equivalent to:

package com.mystuff.factories {
  package lightbulbs {
    ...
  }
}

And happens to get both factories and lightbulbs into scope.

link|flag
VonC's answer is hard to improve on... yet I believe you did improved it ;) +1 – VonC Aug 7 at 18:21
Just complemented. – Daniel Aug 7 at 18:48
@Daniel: lol, I just realized I mentioned in my answer an article on continuation... written by you! I edited my answer to give you the proper "attribution" (a bit in the same spirit than blog.stackoverflow.com/2009/06/… ) – VonC Aug 8 at 8:52
vote up 2 vote down

Will I need to rewrite anything?

def takesArray(arr: Array[AnyRef]) {…}

def usesVarArgs(obs: AnyRef*) {
    takesArray(obs)
}

needs to become

def usesVarArgs(obs: AnyRef*) {
    takesArray(obs.toArray)
}

I had to visit the IRC channel for that one, but then realized I should have started here.

link|flag
Good to know! :) – André Laszlo Nov 11 at 11:55

Your Answer

Get an OpenID
or

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