タイプがNull
かどうかチェックできないのはなぜですか?'Null'のインスタンスとしてタイプをチェックできないのはなぜですか
scala> val s:String = null
s: String = null
scala> s.isInstanceOf[Null]
<console>:13: error: type Null cannot be used in a type pattern or isInstanceOf test
s.isInstanceOf[Null]
^
の可能性のある重複した[Scalaの 'ヌル' は、別の型のインスタンスとしてカウントしていますか?](https://stackoverflow.com/questions/14203201/does-scala-null-count-as-an -instance-of-another-type) – Learner