Sharing Realm fields on Android

后端 未结 2 495
日久生厌
日久生厌 2020-12-21 15:42

Realm on Android doesn\'t support model inheritance/polymorphism.

So is there any way to share fields on Android? We have 5 models that all share the same synchroniz

2条回答
  •  自闭症患者
    2020-12-21 16:40

    If you use Kotlin, sharing the fields via an interface becomes even more trivial:

    interface PersonBase {
        var name: String?
        var salary: Int
    }
    

    Then

    class Person: RealmObject(), PersonBase {
    }
    

提交回复
热议问题