我正在尝试做类似的事情:
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()