gpt4 book ai didi

android - Kotlin : null cannot be value of non null type kotlin

转载 作者:IT老高 更新时间:2023-10-28 13:37:11 25 4
gpt4 key购买 nike

如何在 Kotlin 中为 ArrayList 赋空值?

我正在尝试将空值添加到我的自定义 ArrayList像这样

var mList = ArrayList<CustomClass>()
mList.add(null)

在 java 中是可能的,但我如何在 Kotlin 中实现这一点?我得到了

null cannot be value of non null type kotlin

我需要插入 null 值以便在 RecyclerView 中加载更多功能

最佳答案

那你得这样写。

var mList = ArrayList<CustomClass?>()
mList.add(null)

您必须在 ArrayList 中的类型之后添加 ?,因为 ? 允许我们放置空值。

关于android - Kotlin : null cannot be value of non null type kotlin,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48472950/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com