作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在Kotlin中有一个数据类-这里有5-6个字段,
data class DataClass(
val attribute1: String?,
val attribute2: String?,
val attribute3: Boolean?
)
DataClass(attribute1="ok", attribute2=null, attribute3= null)
初始化类(class)
最佳答案
Kotlin's type system uses ?
to declare nullability。您的数据类具有可为空的字段。您可以通过从其类型中删除null
来防止它们成为?
:
data class DataClass(
val attribute1: String, // not `String?`
val attribute2: String, // not `String?`
val attribute3: Boolean // not `Boolean?`
)
fun main() {
// This line will compile
val tmp = DataClass(attribute1 = "", attribute2 = "", attribute3 = false)
// This line will not compile
val fail = DataClass(attribute1 = null, attribute2 = null, attribute3 = null)
}
关于kotlin - 如何在Kotlin中使数据类中的属性不为null,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57183008/
我是一名优秀的程序员,十分优秀!