Kotlin

kotlin中is,!is,as,as?运算符

2021-06-08  本文已影响0人  因为我的心

一、前言:

1.is运算符和 !is 运算符

kotlin中API提供的 is 运算符类似于Java中的 instanceof 关键字的用法。is 运算符可以检查对象是否与特定的类型兼容(兼容:此对象是该类型,或者派生类),同时也用来检查对象(变量)是否属于某数据类型(如Int、String、Boolean等)。 !is运算符是它的否定形式。

val mAccount = "你好啊"
println(mAccount is String)

输出:

true

val mAccount = "你好啊"
println(mAccount !is String)

输出:

false

2.as运算符和as?运算符

as运算符用于执行引用类型的显式类型转换。如果要转换的类型与指定的类型兼容,转换就会成功进行;如果类型不兼容,使用as?运算符就会返回值null。在Kotlin中,父类是禁止转换为子类型的。

open class Fruit
open class Apple(name: String) : Fruit()
//
val mFruit = Fruit()
val mApple = Apple("苹果")
//
println(mFruit as Apple)

上面这种用法会报:java.lang.ClassCastException异常

>open class Fruit
open class Apple(name: String) : Fruit()
//
val mFruit = Fruit()
val mApple = Apple("苹果")
//
println(mFruit as? Apple)

输出:

null

open class Fruit
open class Apple(name: String) : Fruit()
//
val mFruit = Fruit()
val mApple = Apple("苹果")
//
println(mApple as Fruit)

输出:

Apple@1d81eb93

父类转换为子类是对OOP的严重违反,不推荐使用,父类是不能转换为子类的,子类包含了父类所有的方法和属性,而父类则未必具有和子类同样成员范围,所以这种转换是不被允许的,即便是两个具有父子关系的空类型,也是如此。

上一篇下一篇

猜你喜欢

热点阅读