Kotlin 相关
月盡天明
Hope is a good thing,maybe the best of things!
展开
-
Kotlin 之 lateinit & by lazy
lateinit varval … by lazyreferencehttps://blog.csdn.net/xiexiaotian11/article/details/82425186原创 2018-09-27 14:24:48 · 627 阅读 · 0 评论 -
Kotlin从零单排之 @JvmStatic & @JvmFiled 的用途
@JvmStatic原创 2018-09-27 17:36:42 · 4484 阅读 · 5 评论 -
Kotlin 之 forEach 跳出循环
Kotlin 之 forEach 跳出循环Java 代码中跳出 for 循环我们都用 break,continue关键字。但是 kotlin 语法中没有这两个关键字。怎么办呢?往下看原创 2019-01-03 17:17:26 · 25652 阅读 · 6 评论 -
Kotlin 从零单排之小 tips
文章目录objectabstractinternalobjectobject xxx { fun test() { // todo }}这种类型的 kotlin 类是一种单例模式,在转成 java 字节码的时候,会变成如下:public final class xxx { public static final xxx INSTANCE; private xxx() {...原创 2019-07-11 00:18:05 · 315 阅读 · 0 评论