微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

android – 如何在Kotlin的方法中使用Realm

我正在尝试做类似的事情:

val barcodes = arrayOf("123", "456", "789")
realm.where(Product::class.java).in("barcode", barcodes).findAll()

但是“in”是一个Kotlin函数,我无法访问RealmQuery对象的in(String filedname,String [] values)方法.

目前我有一个java类来完成这项工作并返回结果,但我想知道有更优雅的解决方法吗?

解决方法:

Escaping for Java identifiers that are keywords in Kotlin所述:

Some of the Kotlin keywords are valid identifiers in Java: in, object,
is, etc. If a Java library uses a Kotlin keyword for a method, you can
still call the method escaping it with the backtick (`) character

例如:

realm.where(Product::class.java).`in`("barcode", barcodes).findAll()

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐