Typealias-在Kotlin中组合多个接口

时间:2019-11-26 05:09:33

标签: java kotlin

我对Kotlin中的协议组成有些不满意,我只想通过声明自定义typealias来组合多个接口:

// This doesn't work
typealias MyType = (ReadableInterface && WritableInterface)

有什么想法吗?


Swift 中,我可以这样操作:

typealias MyType = ReadableInterface & WritableInterface

Objective C 中,我会这样做:

typedef <ReadableInterface, WritableInterface> MyType; 

1 个答案:

答案 0 :(得分:2)

为什么不仅仅创建新界面?

interface MyType : ReadableInterface, WritableInterface