Consider this code:

var unit: Unit = null
unit: Unit = ()

a) Why am I allowed to assign null to a value class? (see ยง12.2.3)

b) Why does the null get converted to ()?

link|improve this question

possible duplicate of Scala: Why can I convert Int to Unit? – Ken Bloom Apr 24 '11 at 17:10
Where do you see that () gets converted to null? – Ken Bloom Apr 24 '11 at 17:11
feedback

1 Answer

up vote 19 down vote accepted

From the scala specification section 6.26.1:

Value Discarding. If e has some value type and the expected type is Unit, e is converted to the expected type by embedding it in the term { e ; () }.

In other words, your code is equivalent to

var unit: Unit = {null; ()}
unit: Unit = ()

The null isn't converted -- it's merely ignored and replaced by (), the predefined Unit value.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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