Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

this works:

scala> class foo[T] {
     | var t: T = _
     | }
defined class foo

but this doesn't:

scala> def foo[T] = {
     |   var t: T = _
     | }
<console>:5: error: local variables must be initialized
         var t: T = _

why?

(one can use:

var t: T = null.asInstanceOf[T]

)

share|improve this question

1 Answer

up vote 4 down vote accepted

This is defined in section 4.2 of the Scala Language Specification (my italics)

A variable definition var x: T = _ can appear only as a member of a template. It introduces a mutable field with type T and a default initial value

This, of course, does not answer the why this should be so!

share|improve this answer
So why should it be so? – Raman Sep 28 '12 at 1:19

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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