使用函数引用在Kotlin中重写Java代码发生SAM类型冲突

时间:2017-07-15 17:00:57

标签: java lambda kotlin rx-java2 method-reference

我有一个使用方法引用的Java代码示例,我想重写给Kotlin。 Java版本使用方法参考,解决方案简短明了。但另一方面,我不能在Kotlin中使用方法参考。我设法编写的唯一版本如下所示。似乎Function3 { s: String, b: Boolean, i: Int -> combine(s, b, i) }可以用更清晰的方式编写(如果可能的方法参考将是完美的)。

我是Kotlin的新手,所以我会对任何线索表示感谢。

爪哇

import io.reactivex.Observable;

public class TestJava {

    Observable<String> strings() {
        return Observable.just("test");
    }

    Observable<Boolean> booleans() {
        return Observable.just(true);
    }

    Observable<Integer> integers() {
        return Observable.just(1);
    }

    void test() {
        Observable.combineLatest(strings(), booleans(), integers(),
                this::combine);
    }

    double combine(String s, boolean b, int i) {
        return 1.0;
    }
}

科特林

import io.reactivex.Observable
import io.reactivex.functions.Function3

class TestKotlin {

    fun strings(): Observable<String> {
        return Observable.just("test")
    }

    fun booleans(): Observable<Boolean> {
        return Observable.just(true)
    }

    fun integers(): Observable<Int> {
        return Observable.just(1)
    }

    fun test() {
        Observable.combineLatest(strings(), booleans(), integers(),
                Function3 { s: String, b: Boolean, i: Int -> combine(s, b, i) })
    }

    fun combine(s: String, b: Boolean, i: Int): Double {
        return 1.0
    }
}

修改

Kotlin中的以下方法引用会出错。

fun test() {
    Observable.combineLatest(strings(), booleans(), integers(), this::combine)
}

fun test() {
    Observable.combineLatest(strings(), booleans(), integers(), TestKotlin::combine)
}
  

使用参数不能调用以下任何函数   提供:@CheckReturnValue @SchedulerSupport public final fun combineLatest(p0:((Observer) - &gt; Unit)!,p1:((Observer) - &gt; Unit)!,p2:   ((观察者) - &gt;单位)!,p3:((???,???,???) - &gt; ???)!):   观察到≤(??? .. ???)&GT ;!在io.reactivex.Observable中定义   @CheckReturnValue @SchedulerSupport public open fun combineLatest(p0:ObservableSource!,p1:ObservableSource!,p2:   ObservableSource!,p3:io.reactivex.functions.Function3!):   观察到≤(??? .. ???)&GT ;!在io.reactivex.Observable中定义   @CheckReturnValue @SchedulerSupport public open fun combineLatest(p0:Function!,out   (??? .. ???)&gt;!,p1:Int,vararg p2:ObservableSource!):   观察到≤(??? .. ???)&GT ;!在io.reactivex.Observable

中定义

编辑2

RxKotlin解决了回答中提到的问题。

import io.reactivex.rxkotlin.Observables

class TestKotlin {

    fun test() {
        Observables.combineLatest(strings(), booleans(), integers(), this::combine)
    }

}

2 个答案:

答案 0 :(得分:6)

您也可以在Kotlin中使用Function Reference Expression,就像在Java中使用方法参考表达式一样。例如,Kotlin中的combine函数引用为KFunction3,如下所示:

val f: kotlin.reflect.KFunction3<String, Boolean, Int, Double> = this::combine

在java中,方法参考表达式可以分配给任何兼容 Functional Interface,但是你不能为任何函数类型分配Function Reference Expression,即使它们是< strong>兼容,例如:

val f:io.reactivex.functions.Function3<String,Boolean,Int,Double> =this::combine
//                                                type mismatch error     ---^

确实,Kotlin使用SAM Conversions将lambda / Function Reference Expression转换为Java Functional Interface的实现,这意味着Kotlin执行如下操作:

fun test() = TODO()

val exector:Executor = TODO()

exector.execute(::test)

//::test compile to java code as below:
Runnable task = new Runnable(){
   public void run(){
      test();
   }
};

为什么方法参考表达式在Java中可以正常工作,但在Kotlin中使用Function Reference Expression失败了?

基于上述内容,您可以看到中有许多重载的combineLatest方法。例如,以下两个不能正确使用Function Reference Expression Kotlin:

combineLatest(
       ObservableSource<out T1>,
       ObservableSource<out T2>,
       ObservableSource<out T3>, 
       Function3<T1, T2, T3, out R>
)

combineLatest(
       ObservableSource<out T1>,
       ObservableSource<out T2>,
       ObservableSource<out T3>, 
       ObservableSource<out T4>, 
       Function4<T1, T2, T3, T4, out R>
)

正如我所说,Kotlin使用SAM Conversions将lambda / Function Reference Expression转换为Java Functional Interface,但它无法直接分配给Java Functional Interface

Kotlin中combineLatest方法的第4个参数,编译器根本无法推断其类型,因为第4个参数类型可以是io.reactivex.functions.Function3ObservableSource。因为ObservableSource也是Java Functional Interface

如果遇到SAM Conversion冲突,可以使用适配器功能将lambda转换为特定的SAM类型,例如:

typealias RxFunction3<T1, T2, T3, R> = io.reactivex.functions.Function3<T1,T2,T3,R>

val f: RxFunction3<String, Boolean, Int, Double> = RxFunction3{ s, b, i-> 1.0}

因此,在使用lambda / Function Reference Expression之前必须使用自适应,例如:

typealias RxFunction3<T1, T2, T3, R> = io.reactivex.functions.Function3<T1,T2,T3,R>

fun <T1,T2,T3,R> KFunction3<T1,T2,T3,R>.toFunction3(): RxFunction3<T1, T2,T3,R> {
    return RxFunction3 { t1, t2, t3 -> invoke(t1, t2, t3) }
}

然后您可以使用Function Reference Expression,例如:

Observable.combineLatest(
        strings(),
        booleans(), 
        integers(), 
        //             v--- convert KFunction3 to RxFunction3 explicitly
        this::combine.toFunction3()
)

答案 1 :(得分:4)

@ holi-java答案很棒,它解释了为什么会出现这个问题,我在这里为那些只想摆脱问题的人提供快速解决方案:

rxJava2中使用io.reactivex.rxkotlin.Observables代替io.reactivex.Observable来合并您的观察结果:

Observables.combineLatest(src1, src2, ::yourFunction)

这应该是开箱即用的。