I also attended the same Scala course and I agree with e-i-s that you should use the Option[T] type for implementing an optional field. Here are some more ideas.
The pattern involving
- a trait with method
isEmpty - several classes or objects extending the trait
- a unique object whose method
isEmptyalways returnstrue
is also used to implement sequence-like immutable structures such as lists, streams, and so on.
Compare:
- An
Option[T]type containing the valuesSome(t), for each valuetinT, and the additional valueNone. - A
List[T]type containing objects built from two subclasses (and their respective constructors)Cons[T](h: T, t: List[T])andNil: these represent immutable lists whose elements have typeT. Note that here the methodNil.isEmptyreturns true.
None indicates the absence of a value, while Nil indicates an empty list.
So an optional value None is not the same as an empty list Nil.
NOTE
If you need to test if an optional value is defined or not you can use the isEmpty method of the Option type, or pattern matching:
class MyClass(f: Option[String])
{
val field = f
}
and then, to test if the field of an instance obj of MyClass is defined:
if (obj.field.isEmpty)
{
}
else
{
}
or
obj.field match
{
case Some(s) => /* do something with s */
case None => /* ... */
}