android实体类怎么创建构造函数,android – Kotlin Realm:如果包含自定义构造函数,则类必须声明没有参数的公共构造函数...

我正在Kotlin中创建一个Realm对象.

领域对象:

open class PurposeModel(var _id: Long?,

var purposeEn: String?,

var purposeAr: String?) : RealmObject()

当我编译上面的代码时,我收到此错误:

error: Class "PurposeModel" must declare a public constructor with no arguments if it contains custom constructors.

我在Kotlin找不到与此相关的任何问题.我该如何解决这个问题?

解决方法:

要清除此错误,您必须为属性分配默认值.

像这样更改Realm对象:

open class PurposeModel(var _id: Long? = 0,

var purposeEn: String? = null,

var purposeAr: String? = null) : RealmObject()

现在它将编译.

原因:

When the default value not assigned it will become the parameters of

the constructor, Realm need a public constructor with no arguments.

When the default value assigned, it will become the properties of the

class. So you will get empty constructor by default and clean code.

标签:android,kotlin,realm

来源: https://codeday.me/bug/20190714/1457937.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值