as?
also can be used for cases where the cast might fail, because the object
is of the wrong type. In that case, as?
evaluates to null
, instead of to
the object. So, in this case, since kermit
is not an Axolotl
, notAnAxolotl
winds up null
.
You can learn more about this in:
Tags:
xxxxxxxxxx
1
open class Animal
2
3
class Frog : Animal()
4
5
class Axolotl : Animal()
6
7
fun main() {
8
val kermit : Animal = Frog()
9
10
val notAnAxolotl = kermit as? Axolotl
11
12
println(notAnAxolotl)
13
}
14