In the spirit of

what are some common mistakes made by Scala developers, and how can we avoid them?

Also, as the biggest group of new Scala developers come from Java, what specific pitfalls they have to be aware of?

For example, one often cited problem Java programmers moving to Scala make is use a procedural approach when a functional one would be more suitable in Scala. What other mistakes e.g. in API design newcomers should try to avoid.

link|improve this question
feedback

closed as not constructive by casperOne Dec 20 '11 at 16:21

This question is not a good fit to our Q&A format. We expect answers to generally involve facts, references, or specific expertise; this question will likely solicit opinion, debate, arguments, polling, or extended discussion. See the FAQ for guidance on how to improve it.

25 Answers

Keeping with return null idiom instead of using the Option trait to indicate that a method call may not return a value:

val p = productService.find(RIC, "MSFT.O")
if (p == null)
  //do something 
else
  //do something else

Should be replaced by:

productService.find(RIC, "MSFT.O") match {
  case None => //do something
  case Some(p) => //do something else
}

ie. the ProductService.find method should have the signature:

def find(cType: CodeType, code: String) : Option[Product]  

edit : NOTE one thing I've noticed is the unnecessary resolution (via code-forking) which is a common hangover from Java. For example, rather than the above I might do this instead:

productService.find(RIC, "MSFT.O").toRight(None).fold(doSomething, doSomethingElse)

Or one of the many functional alternatives!

link|improve this answer
10  
It is - you are much less likely to end up with an NPE and your API explictly tells you that you might not get anything back – oxbow_lakes Aug 26 '09 at 15:15
6  
When working with a legacy library that returns null, you can also wrap the return in the Option apply method. e.g. Option(productService.find...)) match { ... } – Collin Dec 11 '10 at 19:05
feedback

Syntactic Mistake

Thinking of "yield" as something like "return". People will try:

for(i <- 0 to 10) {
  if (i % 2 == 0)
    yield i
  else
    yield -i
}

Where the correct expression is:

for(i <- 0 to 10) 
yield {
  if (i % 2 == 0)
    i
  else
    -i
}
link|improve this answer
I still get caught by this one often enough to be worried about my sanity. I think I'll blame it on Ruby. – Thomas Lockney Dec 31 '10 at 6:54
You can do that in python... – drozzy Feb 12 '11 at 18:44
1  
@drozzy yield in Scala is equivalent to list comprehensions in Python, so the comparison is meaningless. – Daniel C. Sobral Feb 12 '11 at 19:07
What do you mean? – drozzy Feb 13 '11 at 2:32
5  
@drozzy I mean that the yield keyword in Python does something completely different than what the yield keyword in Scala does. The equivalent Python code would be [i for i in range(0, 11) if i % 2 == 0]. Python's yield has no Scala equivalent. – Daniel C. Sobral Feb 13 '11 at 3:16
feedback

Forgetting that Range is non-strict (in Scala 2.7)

Ranges are not evaluated until needed, which often causes confusion when using the to function as to returns a Range.

Here's an example where we create three random numbers to use:

scala> val r = new scala.util.Random
r: scala.util.Random = scala.util.Random@36ccf41c

scala> val nums = for(i <- 1 to 3) yield r.nextInt(100)       
nums: RandomAccessSeq.Projection[Int] = RangeM(17, 79, 50)

This looks as if we have 17, 79, and 50. But when we print them again and again...

scala> println(nums)
RangeM(40, 97, 81)

scala> println(nums)
RangeM(41, 75, 86)

...we get different results because the to in 1 to 3 is a Range which is "non strict".

If you want a strict list of numbers you can add toList (or force):

scala> val nums = for(i <- 1 to 3 toList) yield r.nextInt(100) 
nums: List[Int] = List(74, 31, 90)

scala> nums
res2: List[Int] = List(74, 31, 90)

scala> nums
res4: List[Int] = List(74, 31, 90)
link|improve this answer
2  
Thanks, that was on my list, but I forgot to mention it. However, Range is not "lazy" but "non-strict". Specifically, as you indicated, it will recompute a map/flatMap/filter/whatever function each time it is used. A "lazy" definition would defer computing it, but compute only once. – Daniel C. Sobral Aug 26 '09 at 17:58
Thank you Daniel - I've corrected the entry above. – Richard Dallaway Aug 26 '09 at 19:30
15  
On Scala 2.8, by the way, Range is now strict. – Daniel C. Sobral Jan 6 '10 at 11:13
Thank you Daniel - I've updated the title of the question – Richard Dallaway Jan 20 '10 at 13:14
feedback

(Edit September 2011: Greg Price mentions in the comments

This is fixed in trunk, with a warning that should catch a wide range of mistaken comparisons.
See ticket SI-4979. In particular, it will catch all of the examples in this answer. )


August 2009

From Implicit conversions - magical and demonic (emphasis mine):

In Scala == is structural equality test method, unlike in Java, where it is reference equality test. It takes one argument type of Any, which means you can compare your object against any object.

I have had problems with this simply, because you don't always compare things you should.

For example, I might have a tuple of Ints, which has name 'boom'.
And I have another tuple 'doom', and I'd like to compare their first elements, i.e.

 boom._1 == doom._1. 

But I might be a bit sleepy, and write

 boom == doom._1, 

i.e. comparing a tuple against an Int.
Compiler won't say that you are comparing completely different objects. It just sings logically incorrect bytecode. It might be very hard to notice that the comparison isn't ever going to give a true value just by testing it few times.

Ok, that's bad enough as it is, but when we mix implicit conversions with this magical soup, we are really doomed.
An example: String has no reverse method. Therefore it has been extended with RichString.
When you say "yay" reverse, you get a RichString, not String.
Guess what,

 "yay".reverse == "yay" 

won't give you true. Happy debugging times ahead, my friend.

Note: regarding that specific last example, ticket Scala 1495 says it should be fixed in Scala2.8.


Since this answers, the comments mention:

link|improve this answer
3  
Oh man, that latter one is just a killer. – Lewisham Aug 27 '09 at 23:33
Seems like some compiler warnings (builtin or via plugin) could help with this one... – Travis Jan 6 '10 at 21:56
2  
I recommend to avoid Any.== in favour of the type safe alternative from Scalaz. See the doc comment on scalaz.Equal: code.google.com/p/scalaz/source/browse/trunk/core/src/main/… – retronym Jan 12 '10 at 19:58
@retronym: thank you, very interesting link. – VonC Jan 12 '10 at 20:34
5  
In 2.8.0, this is true: "yay".reverse == "yay", reverse() returns a String - this seems to be a result of the new collection framework design. – Dimitris Andreou Jan 13 '10 at 19:07
show 4 more comments
feedback

Misusage Mistake

Thinking of var and val as fields.

Scala enforces the Uniform Access Principle, by making it impossible to refer to a field directly. All accesses to any field are made through getters and setters. What val and var actually do is define a field, a getter for that field, and, for var, a setter for that field.

Java programmers will often think of var and val definitions as fields, and get surprised when they discover that they share the same namespace as their methods, so they can't reuse their names. What share the same namespace is the automatically defined getter and setter, not the field. Many times they then try to find a way to get to the field, so that they can get around that limitation -- but there's no way, or the uniform access principle would be violated.

Another consequence of it is that, when subclassing, a val can override a def. The other way around is not possible, because a val adds the guarantee of immutability, and def doesn't.

There's no guideline on what to call private getters and setters when you need to override it for some reason. Scala compiler and library code often use nicknames and abbreviation for private values, as opposed to fullyCamelNamingConventions for public getters and setters. Other suggestions include renaming, singletons inside an instance, or even subclassing. Examples of these suggestions:

Renaming

class User(val name: String, initialPassword: String) {
  private lazy var encryptedPassword = encrypt(initialPassword, salt)
  private lazy var salt = scala.util.Random.nextInt

  private def encrypt(plainText: String, salt: Int): String = { ... }
  private def decrypt(encryptedText: String, salt: Int): String = { ... }

  def password = decrypt(encryptedPassword, salt)
  def password_=(newPassword: String) = encrypt(newPassword, salt)
}

Singleton

class User(initialName: String, initialPassword: String) {
   private object fields {
     var name: String = initialName;
     var password: String = initialPassword;
   }
   def name = fields.name
   def name_=(newName: String) = fields.name = newName
   def password = fields.password
   def password_=(newPassword: String) = fields.password = newPassword
 }

alternatively, with a case class, which will automatically define methods for equality, hashCode, etc, which can then be reused:

class User(name0: String, password0: String) {
  private case class Fields(var name: String, var password0: String)
  private object fields extends Fields(name0, password0)


  def name = fields.name
  def name_=(newName: String) = fields.name = newName
  def password = fields.password
  def password_=(newPassword: String) = fields.password = newPassword
}

Subclassing

case class Customer(name: String)

class ValidatingCustomer(name0: String) extends Customer(name0) {
  require(name0.length < 5)

  def name_=(newName : String) =
    if (newName.length < 5) error("too short")
    else super.name_=(newName)
}

val cust = new ValidatingCustomer("xyz123")

Thanks to Kevin Wright for the last two examples.

link|improve this answer
there is a type in "private case class Fields" definition – Erick Fleming Jan 6 '10 at 15:06
@efleming969: thanks, fixed. – Daniel C. Sobral Jan 6 '10 at 15:18
feedback

Misusage Mistake

Using the trait Application for anything but the most trivial use. In fact, it has been deprecated and superseded by App, which does not have the problems mentioned below.

The problem with

object MyScalaApp extends Application {  
  // ... body ...
}

is that body executes inside a singleton object initialization. First, the execution of singletons initialization is synchronized, so your whole program can't interact with other threads. Second, JIT won't optimize it, thus making your program slower than necessary.

By the way, no interaction with other threads means you can forget about testing GUI or Actors with Application.

More information can be found on this excellent post by Jorge Ortiz.

link|improve this answer
1  
For the record, this is fixed in the trunk. Scala 2.9 will not have this issue lampsvn.epfl.ch/trac/scala/changeset/23794 – Mushtaq Ahmed Dec 30 '10 at 3:10
@Mushtaq Yeah, I saw that, and tweeted right away about having to change my recommendation everywhere. – Daniel C. Sobral Dec 30 '10 at 15:57
5  
Scala 2.9 has been released and this has been addressed and fixed. Please see details here: scala-lang.org/node/9483#TheAppTrait – chaotic3quilibrium May 25 '11 at 18:52
feedback

There is a difference between function and function(_) when function is a var. Consider the following code:

object Foo {
  var function: (Int)=>Unit = firstFunction

  def firstFunction(a: Int): Unit  = { 
    println("First: "+a)
    function = secondFunction 
  }

  def secondFunction(a: Int): Unit = { println("Second: "+a); }

  def main() = (1 to 2).foreach(function)
  def main2() = (1 to 2).foreach(function(_))
}

Calling Foo.main() will print

First: 1
First: 2
Calling Foo.main2() will print
First: 1
Second: 2
That's because foreach will execute its argument.

In main(), the initial value of function is passed in.

In main2(), a closure that calls the current value of function is passed in.

function(_) in main2() is equivalent to n => function(n).

link|improve this answer
4  
There you go... I didn't think there was something so basic to learn about Scala at this point! – Daniel C. Sobral Oct 7 '10 at 14:10
Ouch. I think that explains the headaches I had yesterday. – Jens Schauder Aug 12 '11 at 10:45
feedback

Misusage and Syntactic Mistake

Using scala.xml.XML.loadXXX for everything. This parser will try to access external DTDs, strip comments, and similar things. There is an alternative parser in scala.xml.parsing.ConstructingParser.fromXXX.

Also, forgetting spaces around the equal sign when handling XML. This:

val xml=<root/>

really means:

val xml.$equal$less(root).$slash$greater

This happens because operators are fairly arbitrary, and Scala uses the fact that alphanumeric character must be separated from non-alphanumeric characters by an underscore in a valid identifier to be able to accept expressions such as "x+y" without assuming this is a single identifier. Note that "x_+" is a valid identifier, though.

So, the way to write that assignment is:

val xml = <root/>
link|improve this answer
1  
Thankyou! I had no idea about the ConstructingParser! – Chris Hagan Sep 30 '10 at 9:30
val xml=<root/> <-- this is brutal! – overthink Dec 30 '10 at 14:52
feedback

Using identifiers starting with lower case letter in pattern matching

abstract class Animal(val name: String)
class Dog(name: String) extends Animal(name)
object iMax extends Animal("iMax")

class Foo {
  def pet(animal: Animal) = animal match {
    case iMax   => println("iMax")
    case d: Dog => println("dog")
    case _      => error("Unsupported animal")
  }
}

The above code does not compile because case d: Dog and case _ are unreachable. By specification, identifiers starting with lower case letters are interpreted as variable pattern, which matches anything. You can place backtick around the variable as follows:

case `iMax` => println("iMax")

or just don't name the singletons starting with lower case letters if you're going to use it in pattern matching.

IntelliJ IDEA recognizes the differences among vals, vars, params, and pattern values. The default color scheme doesn't make distinctions, but Twilight theme I ported does:

alt text

link|improve this answer
Would make a freaking awesome checkstyle-scala check – retronym May 17 '10 at 19:58
feedback

Design Mistake

Careless use of implicits. Implicits can be very powerful, but care must be taken not to use implicit parameters of common types or implicit conversions between common types.

For example, making an implicit such as:

implicit def string2Int(s: String): Int = s.toInt

is a very bad idea because someone might use a string in place of an Int by mistake. In cases where there's use for that, it's simply better to use a class:

case class Age(n: Int)
implicit def string2Age(s: String) = Age(s.toInt)
implicit def int2Age(n: Int) = new Age(n)
implicit def age2Int(a: Age) = a.n

This will let you freely combine Age with String or Int, but never String with Int.

Likewise, when using implicit parameters, never do something like:

case class Person(name: String)(implicit age: Int)

Not only this will make it easier to have conflicts of implicit parameters, but it might result in an implicit age being passed unnoticed to something expecting an implicit Int of something else. Again, the solution is to use specific classes.

Another problematic implicit usage is being operator-happy with them. You might think "~" is the perfect operator for string matching, but others may use it for things like matrix equivalence, parser concatenation, etc. So, if you are going to provide them, make sure it's easy to isolate the scope of their usage.

link|improve this answer
One of my colleagues got carried away with implicit typedefs. – pjp Aug 26 '09 at 14:58
feedback

Assignment via Patterns

In scala it is possible to assign to vals (and vars) via patterns. For example:

scala> val x :: xs = List(1, 2)
x: Int = 1
xs: List[Int] = List(2)

However, this assignment is not typesafe because it has used pattern matching. For example, the following also compiles!

scala> val y :: ys : List[String] = List(1, 2)
warning: there were unchecked warnings; re-run with -unchecked for details

And then it falls over when it runs:

java.lang.ClassCastException: java.lang.Integer cannot be cast to java.lang.String
    at .<init>(<console>:7)
    at .<clinit>(<console>)
    at RequestResult$.<init>(<console>:4)
    at RequestResult$.<clinit>(<console>)
    at RequestResult$scala_repl_result(<console>)

This can be pretty dangerous! It's really easy to use this assignment via a pattern (useful with tuples) and then find, following a refactoring, your code breaks at runtime.

link|improve this answer
8  
Why isn't it considered as a bug of type checker? – andreypopp Jun 22 '10 at 17:09
4  
The fundamental problem is discussed in this thread, but IMO has received far too little attention. The list example adds some complications (type erasure, and the fact that destructuring a list is inherently unsafe since the list may be empty). More revealing (and frightening!) examples are val (a,b) = 1: Any or val (a,b) = Person("Aaron"): Product. Note that they don't even result in a compile warning. – Aaron Novstrup Jun 3 '11 at 20:59
1  
I finally got motivated enough to file an issue: issues.scala-lang.org/browse/SI-4670 – Aaron Novstrup Jun 3 '11 at 23:42
This example is awfully weak -- the compiler tells you, right there in the output, that you might have a runtime error. That's what the "unchecked warnings" warning is about. Anyone who ignores that warning deserves what they get. – Greg Price Sep 26 '11 at 21:59
feedback

Forgetting that for comprehensions silently drop non-matching items

You might expect that when using pattern matching in a for comprehension, the expression:

for (<pattern> <- items) yield ...

is equivalent to:

items.map{case <pattern> => ...}

or to:

for (item <- items) yield {val <pattern> = item; ...}

However, neither of these is equivalent to the for comprehension! The latter two expressions both generate a MatchError for non-matching items, while for comprehension will just silently drop non-matching items.

Here's an example where one line in an input text is accidentally missing a column. With the for comprehension, that buggy line is silently skipped, while with either of the other approaches, you get a MatchError:

scala> val text = """a b c                          
     | d e f
     | g h
     | i j k
     | """
text: java.lang.String = 
a b c
d e f
g h
i j k

scala> val items = text.split("\n").map(_.split(" "))
items: Array[Array[java.lang.String]] = Array(Array(a, b, c), Array(d, e, f), Array(g, h), Array(i, j, k))

scala> for (Array(x, y, z) <- items) yield x + y + z
res2: Array[java.lang.String] = Array(abc, def, ijk)

scala> items.map{case Array(x, y, z) => x + y + z}
scala.MatchError: [Ljava.lang.String;@7f3f7cd2
    at ...

scala> for (item <- items) yield {val Array(x, y, z) = item; x + y + z}
scala.MatchError: [Ljava.lang.String;@7f3f7cd2
    at ...

So be careful - don't use pattern matching in a for comprehension unless you're sure it's okay for some of your items to be silently thrown away!

(Thanks to Daniel for making me aware of this.)

link|improve this answer
The issue is discussed in this thread. Sadly, I think this is a problem that could be fixed fairly readily but to my knowledge has not received sufficient attention. – Aaron Novstrup Jun 3 '11 at 20:33
Filed an issue in the JIRA: issues.scala-lang.org/browse/SI-4670 – Aaron Novstrup Jun 3 '11 at 23:43
feedback

Misusage Mistake

Trying to pattern match a regex against a string assuming the regex is not bounded:

val r = """(\d+)""".r
val s = "--> 5 <---"
s match {
  case r(n) => println("This won't match")
  case _ => println("This will")
}

The problem here is that, when pattern matching, Scala's Regex acts as if it were bounded begin and end with "^" and "$". The way to get that working is:

val r = """(\d+)""".r
val s = "--> 5 <---"
r findFirstIn s match {
  case Some(n) => println("Matches 5 to "+n)
  case _ => println("Won't match")
}

Or just making sure the pattern will match any prefix and suffix:

val r = """.*?(\d+).*""".r
val s = "--> 5 <---"
s match {
  case r(n) => println("This will match the first group of r, "+n+", to 5")
  case _ => println("Won't match")
}
link|improve this answer
Use .*? instead of .* - it's much more performant if, subsequent to it, long matches are expected. Each occurrence .* will make the matcher go to the end of the input, and then backtrack. – Dimitris Andreou Jan 13 '10 at 22:54
I was about to say my point wasn't about regex patterns, but about Scala pattern, but you are completely right. If I'm going to provide an example that may be used as model, I'd better do it right. So, fixed in the code. – Daniel C. Sobral Jan 13 '10 at 23:31
As a side note, this may appear on DZone, but it is now too late to change it there. – Daniel C. Sobral Jan 13 '10 at 23:32
feedback

Misusage Mistake

Forgetting about type erasure. When you declare a class C[A], a trait T[A] or a function or method m[A], A is not present at run-time. That means, for instance that any type parameter will be actually compiled as AnyRef, even though the compiler ensures, compile time, that the types are respected.

It also means that you can't use type parameter A at compile time. For instance, this won't work:

def checkList[A](l: List[A]) = l match {
  case _ : List[Int] => println("List of Ints")
  case _ : List[String] => println("List of Strings")
  case _ => println("Something else")
}

At run-time, the List being passed doesn't have a type parameter. Also, List[Int] and List[String] will both become List[_], so only the first case will ever be called.

You can get around this, to some extent, by using the experimental feature Manifest, like this:

def checkList[A](l: List[A])(implicit m: scala.reflect.Manifest[A]) = m.toString match {
  case "int" => println("List of Ints")
  case "java.lang.String" => println("List of Strings")
  case _ => println("Something else")
}

Beyond the confines of the Scala standard library, you can also use the Typeable type class from shapeless. This allows the checkList example to be rewritten as,

import shapeless.Typeable._

def checkList[A](l: List[A]) = {
  (l.cast[List[Int]], l.cast[List[String]]) match {
    case (Some(_), None) => println("List of Ints") 
    case (None, Some(_)) => println("List of Strings")
    case _ => println("Something else")
  }    
}
link|improve this answer
Sure, but maybe that won't happen in Scala.Net (when they finally grok the non-type-erasure .NET generics). – rsenna Oct 25 '11 at 12:26
@rsenna Not necessarily. Given that .NET generics are not capable of representing the full set of Scala types, at least some erasure will remain necessary, and Scala might well keep all erasure, even if .NET is capable of removing some of it. – Daniel C. Sobral Oct 25 '11 at 13:55
feedback

Style Mistake

Using while. It has its usages, but, most of the time, a solution with for-comprehension is better.

Speaking of for-comprehensions, using them to generate indices is a bad idea too. Instead of:

def matchingChars(string: String, characters: String) = {
  var m = ""
  for(i <- 0 until string.length)
    if ((characters contains string(i)) && !(m contains string(i)))
      m += string(i)
  m
}

Use:

def matchingChars(string: String, characters: String) = {
  var m = ""
  for(c <- string)
    if ((characters contains c) && !(m contains c))
      m += c
  m
}

If one needs to return an index, the pattern below can be used instead of iterating over indices. It might be better applied over a projection (Scala 2.7) or view (Scala 2.8), if performance is of concern.

def indicesOf(s: String, c: Char) = for {
  (sc, index) <- s.zipWithIndex
  if c == sc
} yield index    
link|improve this answer
2  
Daniel - why is using a for comprehension to generate indices a bad idea? – oxbow_lakes Aug 27 '09 at 15:17
8  
An index is a pointer. It's a pointer over an array, instead of directly into memory, but it is a pointer. Everything bad about pointer manipulation applies to indices. It subjects your code to pointer math errors, bound errors, etc. A for-comprehension can generate the elements themselves, and that's less prone to errors – Daniel C. Sobral Aug 27 '09 at 18:58
feedback

Usage Mistake

On Unix/Linux/*BSD, naming your host (as returned by hostname) something and not declaring it on your hosts file. Particularly, the following command won't work:

ping `hostname`

In such cases, neither fsc nor scala will work, though scalac will. That's because fsc stays running in background an listening to connections through a TCP socket, to speed up compilation, and scala uses that to speed up script execution.

link|improve this answer
feedback

Thinking Option[Foo] is the only/most natural way to express a missing function argument

Consider the following function that makes sure amt is between cap and floor (and returns the nearest boundary if it isn't in that range):

def restrict(floor : Option[Double], cap : Option[Double], amt : Double) : Double

The use of an Option to represent the missing bounds means you have to jump through several hoops to write this function cleanly:

such as

= (floor -> cap) match {
    case (None, None)       => amt
    case (Some(f), None)    => f max amt 
    case (None, Some(c))     => c min amt
    case (Some(f), Some(c)) => (f max amt) min c
  }

(See this question for lots of attempts to express the method body more elegantly.)

A much better way to write this function is to realize that there's a natural way to express the defaults of "no floor" and "no cap" within the Double type: Double.NegativeInfinity and Double.PositiveInfinity. If we change the interface for this function, we use these default bounds as default parameters and concisely rewrite the body of the function.

def restrict(amt:Double,
            floor:Double = Double.NegativeInfinity,
            cap:Double=Double.PositiveInfinity):Double =
    (amt min cap) max floor

We call this function using named parameters restrict(10.0, cap = 5.0).


Similarly, the optional function parameter in

class ARegex[T](regex:Regex, reform:Option[String => T]){
  def findFirst(input:String):Option[T] = {
    (regex.findFirstIn(input), reform) match{
      case (None, _) => None
      case (Some(s), None) => Some(s) // won't compile because of type mismatch
      case (Some(s), Some(fun)) => Some(fun(s))
    }
  }
}

(from this question)

Can be rewritten using identity to indicate that no transformation should happen, and in this case it will also make the function typecheck correctly.

class ARegex[T](regex:Regex, reform:String => T = identity[String](_)){
  def findFirst(input:String):Option[T] = regex findFirstIn input map reform
}
link|improve this answer
Surely having an option on multiple connected parameters - like a max and min - suggests that you should instead be using an object to represent them, which itself could be optional? – Marcus Downing Nov 22 '10 at 14:43
@Marcus: In this case there may be a minimum, without a maximum, or there may be a maximum, withot a minimum. But even so, if you were just passing an optional Range then using a default range from -infinity to +intfinity is probably more natural than an option. – Ken Bloom Nov 22 '10 at 17:05
@Ken: How about sealed trait Restrict{ def apply(v:Double):Double} case object Unbounded extends Restrict; case class Cap(x:Double) extends Restrict; case class Floor(x:Double) extends Restrict; case class Interval(fl:Double,cp:Double)extends Restrict; with appropriate implementations of apply for the subclasses. – Jim Dec 30 '10 at 2:06
@Jim: No. The point is that choosing a natural representation of the missing parameter should simplify both implementation and use of the function. This highly complicates the implementation, much more so than the versions that take Options and use getOrElse to turn them into infinities internally, and it also makes calling the function more complicated than the versions that take Options. – Ken Bloom Dec 30 '10 at 5:08
You could always use getOrElse on the supplied Option params to give exactly the same effect as default parameters. – Kevin Wright May 2 '11 at 10:11
show 3 more comments
feedback

Design Mistake

Badly designing equality methods. Specifically:

  • Trying to change "==" instead of "equals" (which gives you "!=" for free).

  • Defining it as

    def equals(other: MyClass): Boolean
    

    instead of

    override def equals(other: Any): Boolean
    
  • Forgetting to override hashCode as well, to ensure that if a == b then a.hashCode == b.hashCode (the reverse proposition need not be valid).

  • Not making it symmetric: if a == b then b == a. Particularly think of subclassing -- does the superclass knows how to compare against a subclass it doesn't even know exists? Look up canEquals if needed.

  • Not making it transitive: if a == b and b == c then a == c.

link|improve this answer
1  
The last 3 bullet points have nothing to do with Scala over Java but your point about the override def is a good one – oxbow_lakes Aug 27 '09 at 15:51
1  
There's a series of questions with the same subject as this, and their focus is common errors, not common errors when changing languages. I assume this question has the same intent. Perhaps a better redaction of the question is in order? It is a community wiki. – Daniel C. Sobral Aug 27 '09 at 19:00
Not to be pedantic, but I think you mean symmetric rather than commutative. – Aaron Novstrup Jun 3 '11 at 20:23
@Aaron I don't mind pedantism (in a forum like this), but one speaks of symmetric functions and commutative operators, so my use seems appropriate and, arguably, more correct in an OO setting (where symmetry could be taken to apply only the arguments to a method, this/self-excluded). – Daniel C. Sobral Jun 4 '11 at 14:25
Commutativity requires a notion of equality separate from the operation itself (a op b == b op a), whereas symmetry is a property of equality (a == b iff b == a). If you're still not convinced, see the javadoc: download.oracle.com/javase/1.4.2/docs/api/java/lang/…) – Aaron Novstrup Jun 4 '11 at 14:38
show 4 more comments
feedback

Sticking to imperative designs, instead of using the more functional approach that Scala encourages.

Bad:

class Item(val name: String)

val items: ListMap[String, Item] = new ListMap()

val itemOne   = new Item("One")
val itemTwo   = new Item("Two")
val itemThree = new Item("Three")

items += itemOne.name   -> itemOne
items += itemTwo.name   -> itemTwo
items += itemThree.name -> itemThree

Good:

case class Item(name: String)

val itemNames = List("One", "Two", "Three")
val itemMap = itemNames.map(i => i -> Item(i)).toMap

The second approach eliminates a number of possible problems.

  • by constructing the map in a single operation, it can't be seen from another thread in a partially-built state
  • The map is immutable, you can be certain that it wont be changed elsewhere. The JVM can also use this to optimise for more performance.
  • There's less duplication, reducing the risk of human error.
link|improve this answer
feedback

Restricting Type Parameters with Unnecessary Bounds

Context: While modern IDEs already provide quite a few refactoring tools for Scala, refactoring the type system of your framework or library can be hell.

When you develop a class or trait, you typically have a usage scenario in your head, and while you think you are smart and add some type parameters, so you could eventually plug different things into this class or trait, you are anticipating which things should be plugged in and in consequence you unnecessarily add upper bounds to the type parameters:

trait Cursor[ C <: Context ]

This may be a trait that is pure design skeleton, no actual methods implemented. Thus you are putting the bound without any real need.

After you finished 90% of your framework you find that Context doesn't make sense, and you refactor it into something different, say UserData. Now you need to go through the whole framework and correct the bounds or rather remove them because they don't make sense any more.

Suggestion: Try to make as little assumptions as possible about the type parameters -- only when you start implementing methods you may find that you must add a bound here or there. In the majority of cases, however, the bounds are added on the usage side:

trait System[ U <: UserData ] {
   def visit: Cursor[ U ]
}

Cursor could go perfectly with an unspecified type parameter, while your CursorImpl is the place that may need the restriction U <: UserData.

link|improve this answer
feedback

Traits defining equals, combined with case classes

If a trait overrides equals with a non-trivial implementation (i.e. not just doing super.equals(o)), it's a hideous error to mix that trait in a case class that has the compiler-generated equals() implementation.

This is because equality in case classes by default ignores any mixed traits. For example, given:

case class A()
trait T

these are equal:

A() == new A with T
new A with T == A()

So, the case class (by default) extends the equivalence relation to all instances and traits mixed in those instances, so a trait can't modify the behavior of equals, because if, whether it is weakened or made more strict, symmetry breaks (from the example above, only the second expression will change value, while the first will remain constant), thus equals breaks.

This reasoning is useful in other contexts too. If a superclass defines an equals() that is supposed to let an instance of a superclass be equal to an instance of a subclass, then by the same token, the subclass can't redefine equals - it is already defined for it (through symmetry) and it must follow suit.

Thus, consider this example:

class A(val x: Int)
class B(override val x: Int, val y: Int) extends A(x)

If we wanted to consider a new A(5) as equal to new B(5, 10), that's ok, the only problem is that we can no longer treat new B(5, 10) as NOT equal to new B(5, 125) -- these must be treated equal too! This is because:

val a = new A(5)
val b1 = new B(5, 10)
val b2 = new B(5, 125)

a == b1 //assuming this is true

then

a == b2 //also true

then

b1 == b2 //due to transitivity of equals

Which is counter-intuitive and most probably not what we wanted.

So, we see in that example that because a class defines equality with elements not of the same runtime type (but subclasses too), those other types are forced to delegate to exactly the same equals() logic. Simply put, defining equals to handle subclasses too, and take in consideration any extra state/fields of these subclasses (or traits, as above), is wrong.

The latter case is well known due to Effective Java of Josh Bloch, while the interplay of equals traits and case classes is more unique to Scala.

link|improve this answer
feedback

Not linking your Actors, and not setting trapExit=true ! Always link your actors, otherwise you will have no idea if some propagates out of a reaction, causing your actor to exit.

I often find that it's nice to have actors in some kind of tree (i.e. there's a primary application actor at the top of the tree and every lowly worker actor is ultimately linked by other actors to the boss). So then I'd link the actors down the tree in such a way that the failure of a worker actor causes error propagation up the tree and then the boss can take some action as appropriate.

link|improve this answer
feedback

Forgetting to override vals/vars in derived classes (usage mistake)

When defining a subclass, it is legal to leave off the override val/override var keywords on constructor parameters:

class Base(val field1: String)

class Sub(field1: String, val field2: String) extends Base(field1)

However, as discussed in these questions, doing so can result in different bytecode or even unexpected behavior. When the override is omitted, references to the identifier within the derived class definition will resolve to the constructor parameter rather than the field.

For this reason, I am reversing my previous advice that overrides be avoided in non-case-class constructor parameters.

link|improve this answer
feedback

Unnecessarily overriding vals (style mistake)

Note: I no longer suggest omitting the override modifier on constructor parameters. See this answer.

I often see this idiom for defining a subclass (in fact, it appears in some of the answers to this question!):

class Base(val field1: String)

class Sub(override val field1: String, val field2: String) extends Base(field1)

In this case, there is no need to override field1. Developers should prefer the less verbose form below:

class Sub(field1: String, val field2: String) extends Base(field1)

Note that if the subclass is a case class, the override modifier is required since all constructor parameters implicitly have the val modifier.

link|improve this answer
feedback

Using a scala immutable.Map (or immutable.Set) for a high-throughput collection, particularly if immutability is not required. Currently (i.e. Scala 2.7.7) , the default implementation is based on a hidden, mutable, synchronized hash-table, which maintains a history of previous "versions", which is compacted.

In the case of extremely high-throughput collections (hundreds of thousands of insertions/removals), this structure is incredibly inefficient and stressses the garbage collector enormously. Use a mutable.Map (or mutable.Set) instead!

This should be alleviated in scala 2.8 with Tiark Rompf's conversion of Phil Bagwell's data structure (currently used in Clojure)

link|improve this answer
1  
@oxbow_lakes: Please monitor Scala library development progress and update this as necessary, since this is likely to become untrue in the not-too-distant future. – Randall Schulz Mar 15 '10 at 16:34
Indeed - I should have made that more clear: I'm aware of the work being done by Tiark – oxbow_lakes Mar 15 '10 at 17:17
11  
This advice is now deprecated. :-) – Daniel C. Sobral Dec 11 '10 at 13:35
feedback

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