我看到withLatestFrom()方法的编译错误是什么问题?这是实验性的片段:
spark.read.table("sample")
错误:使用提供的参数无法调用以下功能:
答案 0 :(得分:1)
Kotlin无法推断出lambda是什么类型,请手动传递。
source1.withLatestFrom(source2, BiFunction<Int, String, String> { intValue, stringValue -> "Result string: $intValue $stringValue" })