0

我在 Kodein 模块中有以下代码

    bind<Manager>() with factory { strategy: OrderStrategyType ->
        val manager: Manager = when (strategy) {
            OrderStrategyType.VOLATILITY -> VolatilityManager()
            else -> SimpleManager()
        }

        return@factory manager
    }

Manager接口在哪里,VolatilityManager()并且SimpleManager()正在实现它。

IntelliJ 建议内联变量manager,如果我应用建议,我会收到代码:

    bind<Manager>() with factory { strategy: OrderStrategyType ->
        return@factory when (strategy) {
            OrderStrategyType.VOLATILITY -> VolatilityManager()
            else -> SimpleManager()
        }
    }

但是,虽然 IDE 检测到此代码没有问题,但它无法编译

Type inference failed: infix fun <C, A> with(binding: KodeinBinding<in C, in A, out Manager>): Unit
cannot be applied to
(Factory<Any?, OrderStrategyType, Any>)

老实说,我不明白编译器错误。推理对我来说很明显。我应该重写我的代码,如果是,如何?

4

1 回答 1

0

关于此代码,对于 Kotlin 1.3.72,它们没有问题。

interface A
class B: A
class C: A

bind<A>() with factory { b: Boolean ->
    when(b) {
        true -> B()
        false -> C()
   }
}

如果您的类实现/扩展了多个接口/类,类型推断现在可能不是您想要返回的类型。

强制施法似乎可以解决问题

interface A
interface X
class B: A, X
class C: A, X

bind<A>() with factory { b: Boolean ->
    when(b) {
        true -> B()
        false -> C()
    } as A
}

PS:你不需要return@factoryas when 是一个表达式。

于 2020-07-12T17:40:36.720 回答