android – 在kotlin中写入parcer nullable值

前端之家收集整理的这篇文章主要介绍了android – 在kotlin中写入parcer nullable值前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
后端返回可以为空的Int?
我该如何写出可以为空的值?
date class Foo (var value: Int?){
   constructor(source: Parcel) : this(
     source.readInt()
   )

   override fun writeToParcel(dest: Parcel,flags: Int) {
     dest.writeInt(value) // doesn't compile - writeInt expect no null value
   }
 }

现在我得到解决方案:

dest.writeInt(value?: -1)

然后检查-1

或者像字符串一样写Int然后使用值…

但我认为这是丑陋和错误的.

解决!我的答案:

source.readValue(Int::class.java.classLoader) as Int?,dest.writeValue(value)

解决方法

解决方案:
source.readValue(Int::class.java.classLoader) as Int?,dest.writeValue(value)
原文链接:https://www.f2er.com/android/309404.html

猜你在找的Android相关文章