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()
上一篇:javascript – 在react-native域中存储数组


下一篇:java – warning:类型'[io.realm.OrderListRealmProxy]’的未闭合文件;这些类型不会进行注释处理