gpt4 book ai didi

kotlin - Kotlin-将函数数组作为函数的参数传递

转载 作者:行者123 更新时间:2023-12-02 13:13:03 24 4
gpt4 key购买 nike

我有这个函数(理论上)接受一个函数数组作为参数。

fun execute(afterDay: Long, listeners: Array<(List<String>) -> Unit>)

在客户端类中,我尝试调用此execute方法并将函数作为参数传递:
fun updateMovies(ids: Array<String>){

}

fun getNewIds() {
GetImdbIds(kodein).execute(daysBack.toEpochDay(), [::updateMovies])
}

但是它不能编译。

我做错了什么?

错误:
Error:(29, 59) Kotlin: Type inference failed. Expected type mismatch: inferred type is Array<KFunction1<@ParameterName Array<String>, Unit>> but Array<(List<String>) -> Unit> was expected
Error:(29, 59) Kotlin: Unsupported [Collection literals outside of annotations]

最佳答案

我通过进行两项更改使它起作用。

首先,当updateMovies想要使用Array<String>的函数时,编写的listeners函数将使用List<String>。因此,我们可以进行以下更改:

fun updateMovies(ids: List<String>) {
TODO()
}

接下来,如果您使用 arrayOf()创建函数引用的数组,而不是尝试使用非法的数组文字,则应编译:
GetImdbIds(kodein).execute(1L, arrayOf(::updateMovies))

关于kotlin - Kotlin-将函数数组作为函数的参数传递,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54357414/

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