我对Kotlin中的协议组成有些不满意,我只想通过声明自定义typealias
来组合多个接口:
// This doesn't work
typealias MyType = (ReadableInterface && WritableInterface)
有什么想法吗?
在 Swift 中,我可以这样操作:
typealias MyType = ReadableInterface & WritableInterface
在 Objective C 中,我会这样做:
typedef <ReadableInterface, WritableInterface> MyType;
答案 0 :(得分:2)
为什么不仅仅创建新界面?
interface MyType : ReadableInterface, WritableInterface