本文介绍了Typealias-在Kotlin中组合多个接口的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我对Kotlin中的协议组成有些不满意,我只想通过声明自定义typealias
来组合多个接口:
I'm a bit rusty with protocol composition in Kotlin, I'd just like to combine multiple interfaces by declaring a custom typealias
:
// This doesn't work
typealias MyType = (ReadableInterface && WritableInterface)
有什么想法吗?
在 Swift 中,我可以这样操作:
In Swift, I would do it this way:
typealias MyType = ReadableInterface & WritableInterface
在 Objective C 中,我会这样做:
In Objective C, I would do it this way:
typedef <ReadableInterface, WritableInterface> MyType;
推荐答案
为什么不仅仅创建新的界面?
Why not just create new interface?
interface MyType : ReadableInterface, WritableInterface
这篇关于Typealias-在Kotlin中组合多个接口的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!