Kotlin:类型推断失败。预期类型不匹配:推断类型为 MutableList<Long?>,但预期为 MutableCollection<Long>

Kotlin: Type inference failed. Expected type mismatch: inferred type is MutableList<Long?> but MutableCollection<Long> was expected

我正在尝试使用 kotlin 创建一个 MutableList,但我收到一条错误消息:

类型推断失败。预期类型不匹配:推断类型为 MutableList,但预期为 MutableCollection

...而且我不确定如何将 MutableList 转换为 MutableCollection。

我试过使用:

.toMutableList().toCollection()

但它正在寻找目的地 - 我不确定该怎么做。

代码段:

data class HrmSearchResult(
    var rssi: Short?,
    var adjustRssi: Short?,
    var timeout: Int,
    var serialNumber: Long?,
    var isIn: Boolean,
    var countIn: Int
)

private val hashMapHrm = ConcurrentHashMap<Long?, HrmSearchResult>()

val hrmDeviceList: MutableCollection<Long>
    get() = try {
        if (hashMapHrm.elements().toList().none { it.isIn}) {
            //if there are no member in range, then return empty list
            arrayListOf()
        } else {
            hashMapHrm.elements()
                .toList()
                .filter { it.isIn }
                .sortedByDescending { it.adjustRssi }
                .map { it.serialNumber }
                .toMutableList().toCollection()
        }
    } catch (ex: Exception) {
        AppLog.e(
            LOG, "Problem when get devices " +
                    "return empty list: ${ex.localizedMessage}"
        )
        arrayListOf()
    }

如有任何建议,我们将不胜感激。

问题是可空性,而不是集合类型,即您正在创建 List<Long?>,而预期 List<Long>

您可以通过以下方式重现您的错误消息 (inferred type is MutableList<Long?> but MutableCollection<Long> was expected):

val foo: MutableCollection<Long> =
    listOf(1L, 2, 3, 4, null)
        .toMutableList()

您可以通过插入 .filterNotNull() 来修复它以删除潜在的空值,并将 List<T?> 转换为 List<T>:

val foo: MutableCollection<Long> =
    listOf(1L, 2, 3, 4, null)
        .filterNotNull()
        .toMutableList()

(所以你的 .toCollection() 调用实际上不需要并且可以删除)

一些特定于您的代码的其他注释:

您可能希望在 .elements.toList() 上使用 .values,并且 map { }.filterNotNull() 可以合并为 mapNotNull,因此总而言之,您可能希望将链编写为

hashMapHrm.values
    .filter { it.isIn }
    .sortedByDescending { it.adjustRssi }
    .mapNotNull { it.serialNumber }
    .toMutableList()