gpt4 book ai didi

kotlin - RxKotlin “withLatestFrom(…)”编译错误:没有足够的信息来推断类型变量R

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

1)下面的代码无法编译并出现错误:“没有足够的信息来推断类型变量R”

keywordChanges
.withLatestFrom(searchParamsSubject)
.subscribe { (keyword, searchParams) ->
...
}

2)下面的代码可以编译和运行,但是我希望不要有一个空的 subscribe(),也不要在组合器函数中添加副作用。
keywordChanges
.withLatestFrom(searchParamsSubject) { keyword, searchParams ->
searchParamsSubject.onNext(searchParams.copy(keyword = keyword))
}
.subscribe()

3)下面是我试图在1)中调用的RxKotlin库中的代码
/**
* Emits a `Pair`
*/
inline fun <T, U, R> Observable<T>.withLatestFrom(other: ObservableSource<U>): Observable<Pair<T,U>>
= withLatestFrom(other, BiFunction{ t, u -> Pair(t,u) }

如何修改1)中的代码以使其正常工作?

最佳答案

您必须明确告诉编译器正在使用哪些类。

        val o1 = Observable.just(1)
val o2 = Observable.just(2)

o1.withLatestFrom(o2, BiFunction { t1 : Int, t2 : Int -> t1 to t2})
.subscribe { (one, two) -> }

另外,RxKotlin扩展功能库可以为您处理此问题。
https://github.com/ReactiveX/RxKotlin

关于kotlin - RxKotlin “withLatestFrom(…)”编译错误:没有足够的信息来推断类型变量R,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57063614/

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