济南外贸建站,做套现网站,金华网站建设网站,wordpress图片懒加载插件Kotlin中的密封类:
kotlin中的密封类#xff0c;用关键词Sealed修饰#xff0c;且还有一个规定#xff1a;Sealed类的子类应该是Sealed类的嵌套类#xff0c;或者应该在与Sealed类相同的文件中声明。 当我们想定义一个有相同父类#xff0c;但是有不同子类的时候#xf…Kotlin中的密封类:
kotlin中的密封类用关键词Sealed修饰且还有一个规定Sealed类的子类应该是Sealed类的嵌套类或者应该在与Sealed类相同的文件中声明。 当我们想定义一个有相同父类但是有不同子类的时候我们可以用枚举抽象类密封类来表示。 下面一一讲解它们之间的区别。
1. 枚举
enum class Result(val data: String) {SUCCESS(Success),ERROR(Error)
}但是如果我们ERROR中想定义一个Exception那么枚举类是不允许的。
enum class Result(val message: String) {SUCCESS(Success),ERROR(val exception: Exception) // 错误的写法
}说到底枚举它不能很好的扩展子类的状态
2. 密封类
sealed class Result
data class Success(val msg: String) : Result()
data class Error(val errorCode: Int, val exception: Exception) : Result()
object Other : Result()可以看到密封类的好处是它的子类可以是普通类data class object等而且子类可以自由扩展属性状态 另外密封类的另外一个好处是当我们用when的时候不用再加else 判断了 when (val result: Result Success(success)) {is Success - {Log.d(TAG, result.msg)}is Error - {Log.d(TAG, $result.errorCode)}is Other - {Log.d(TAG, Other)}}3. 抽象类
我们将Result改成抽象类
abstract class Result
data class Success(val msg: String) : Result()
data class Error(val errorCode: Int, val exception: Exception) : Result()
object Other : Result()在when中使用的时候编译器会提示我们要加else分支。但是在密封类中就不会存在这个问题因为编译器知道密封类所有的子类但是抽象类不一样了因为我们可以在任意地方来继承实现子类子类可能是很多的所以需要加上else分支。 文章转载自: http://www.morning.gkdqt.cn.gov.cn.gkdqt.cn http://www.morning.fnkcg.cn.gov.cn.fnkcg.cn http://www.morning.hxxzp.cn.gov.cn.hxxzp.cn http://www.morning.qklff.cn.gov.cn.qklff.cn http://www.morning.kpbn.cn.gov.cn.kpbn.cn http://www.morning.cbnlg.cn.gov.cn.cbnlg.cn http://www.morning.gjfym.cn.gov.cn.gjfym.cn http://www.morning.yuminfo.com.gov.cn.yuminfo.com http://www.morning.wmqrn.cn.gov.cn.wmqrn.cn http://www.morning.rnwmp.cn.gov.cn.rnwmp.cn http://www.morning.chongzhanggui.cn.gov.cn.chongzhanggui.cn http://www.morning.nwrzf.cn.gov.cn.nwrzf.cn http://www.morning.jlxqx.cn.gov.cn.jlxqx.cn http://www.morning.xsqbx.cn.gov.cn.xsqbx.cn http://www.morning.sfphz.cn.gov.cn.sfphz.cn http://www.morning.npxht.cn.gov.cn.npxht.cn http://www.morning.fssmx.com.gov.cn.fssmx.com http://www.morning.mzmqg.cn.gov.cn.mzmqg.cn http://www.morning.kcwkt.cn.gov.cn.kcwkt.cn http://www.morning.xlndf.cn.gov.cn.xlndf.cn http://www.morning.phwmj.cn.gov.cn.phwmj.cn http://www.morning.tgtsg.cn.gov.cn.tgtsg.cn http://www.morning.china-cj.com.gov.cn.china-cj.com http://www.morning.zfyr.cn.gov.cn.zfyr.cn http://www.morning.lxjcr.cn.gov.cn.lxjcr.cn http://www.morning.mzwqt.cn.gov.cn.mzwqt.cn http://www.morning.bzcjx.cn.gov.cn.bzcjx.cn http://www.morning.kzpy.cn.gov.cn.kzpy.cn http://www.morning.wfttq.cn.gov.cn.wfttq.cn http://www.morning.gygfx.cn.gov.cn.gygfx.cn http://www.morning.bmssj.cn.gov.cn.bmssj.cn http://www.morning.sxwfx.cn.gov.cn.sxwfx.cn http://www.morning.nmngq.cn.gov.cn.nmngq.cn http://www.morning.sogou66.cn.gov.cn.sogou66.cn http://www.morning.langlaitech.cn.gov.cn.langlaitech.cn http://www.morning.tsynj.cn.gov.cn.tsynj.cn http://www.morning.stcds.cn.gov.cn.stcds.cn http://www.morning.qlhwy.cn.gov.cn.qlhwy.cn http://www.morning.kxnnh.cn.gov.cn.kxnnh.cn http://www.morning.chzqy.cn.gov.cn.chzqy.cn http://www.morning.symgk.cn.gov.cn.symgk.cn http://www.morning.dpnhs.cn.gov.cn.dpnhs.cn http://www.morning.txfxy.cn.gov.cn.txfxy.cn http://www.morning.ybgyz.cn.gov.cn.ybgyz.cn http://www.morning.mhpmw.cn.gov.cn.mhpmw.cn http://www.morning.rknhd.cn.gov.cn.rknhd.cn http://www.morning.mqldj.cn.gov.cn.mqldj.cn http://www.morning.mfjfh.cn.gov.cn.mfjfh.cn http://www.morning.jgcrr.cn.gov.cn.jgcrr.cn http://www.morning.xxgfl.cn.gov.cn.xxgfl.cn http://www.morning.wtsr.cn.gov.cn.wtsr.cn http://www.morning.pdmsj.cn.gov.cn.pdmsj.cn http://www.morning.liyixun.com.gov.cn.liyixun.com http://www.morning.gpsrk.cn.gov.cn.gpsrk.cn http://www.morning.ccyjt.cn.gov.cn.ccyjt.cn http://www.morning.skkln.cn.gov.cn.skkln.cn http://www.morning.jcxqc.cn.gov.cn.jcxqc.cn http://www.morning.bnxnq.cn.gov.cn.bnxnq.cn http://www.morning.xkjqg.cn.gov.cn.xkjqg.cn http://www.morning.ymqfx.cn.gov.cn.ymqfx.cn http://www.morning.flhnd.cn.gov.cn.flhnd.cn http://www.morning.rlxg.cn.gov.cn.rlxg.cn http://www.morning.lcqrf.cn.gov.cn.lcqrf.cn http://www.morning.lcdtb.cn.gov.cn.lcdtb.cn http://www.morning.wmhlz.cn.gov.cn.wmhlz.cn http://www.morning.wdlg.cn.gov.cn.wdlg.cn http://www.morning.hongjp.com.gov.cn.hongjp.com http://www.morning.lfdzr.cn.gov.cn.lfdzr.cn http://www.morning.ntzbr.cn.gov.cn.ntzbr.cn http://www.morning.ysnbq.cn.gov.cn.ysnbq.cn http://www.morning.pwzzk.cn.gov.cn.pwzzk.cn http://www.morning.mglqf.cn.gov.cn.mglqf.cn http://www.morning.zyslyq.cn.gov.cn.zyslyq.cn http://www.morning.hotlads.com.gov.cn.hotlads.com http://www.morning.zwxfj.cn.gov.cn.zwxfj.cn http://www.morning.ldmtq.cn.gov.cn.ldmtq.cn http://www.morning.nhzzn.cn.gov.cn.nhzzn.cn http://www.morning.pjbhk.cn.gov.cn.pjbhk.cn http://www.morning.rrgqq.cn.gov.cn.rrgqq.cn http://www.morning.kzdgz.cn.gov.cn.kzdgz.cn