I saw some scala code that assign "_" to a field of class, what does it mean ? Thanks
private var tk: TaggedKey = _
|
|
It means: assign default value. Default value is defined as It is described in 4.2 Variable Declarations and Definitions of the The Scala Language Specification:
|
||||
|
|