Kotlin笔记(五):基础篇latest
1.可空类型问号可以加在任何类型的后面来表示这个类型的变量可以存储 null 引用 : String?、 Int?、 MyCustomType? ,等等
一旦你有一个可空类型的值,能对它进行的操作也会受到限制。例如,不能再调用它的方法
>> fun strLenSafe(s: String?) = s.length()
ERROR: only safe (?.) or non null asserted (!!.) calls are allowed on a nullable receiver of type kotlin.String?
...
2018-10-05
|
Kotlin