I've noticed the following behavior in scala when trying to unwrap tuples into vals:

scala> val (A, B, C) = (1, 2, 3)
<console>:5: error: not found: value A
       val (A, B, C) = (1, 2, 3)
            ^
<console>:5: error: not found: value B
       val (A, B, C) = (1, 2, 3)
               ^
<console>:5: error: not found: value C
       val (A, B, C) = (1, 2, 3)
                  ^

scala> val (u, v, w) = (1, 2, 3)
u: Int = 1
v: Int = 2
w: Int = 3

Is that because scala's pattern matching mechanism automatically presumes that all identifiers starting with capitals within patterns are constants, or is that due to some other reason?

Thanks!

link|improve this question

feedback

2 Answers

up vote 13 down vote accepted

Yes, and it gets worse:

val (i, j) : (Int, Int) = "Hello" -> "World"

The above will compile and fail at runtime with a ClassCastException. It is easy to forget that the (i, j) declaration is a pattern.

EDIT: for ziggystar, the Scala assignment rules state that in the statement:

val p = expr //or var

p can be either an identifier or a pattern (see section 15.7 of Programming in Scala, pp284). So for example, the following is valid:

val x :: y :: z :: rest = List(1, 2, 3, 4)

Taking this together with the fact that patterns are erased (i.e. parametric type information is unchecked) means that my original example will compile.

link|improve this answer
That's interessting. But I don't get what you mean by pattern here. Can you please explain a bit more? – ziggystar Apr 28 '10 at 9:27
I've modified my answer – oxbow_lakes Apr 28 '10 at 10:42
3  
Interesting error... perhaps you should point out it fails because that's equivalent to Tuple2[Int, Int], which is type-erased to Tuple2[Any, Any]? – Daniel C. Sobral Apr 28 '10 at 15:51
1  
@Daniel - why, you just have pointed it out! :-) – oxbow_lakes Apr 28 '10 at 16:29
feedback

From [scala] Question about naming conventions you can read

The initial capital letter has an advantage when pattern matching. Identifiers with an initial capital letter are considered to be values to match against instead of a variable to be bound.

link|improve this answer
thanks for the ref aioobe! – Paul Milovanov Apr 28 '10 at 18:52
feedback

Your Answer

 
or
required, but never shown

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