获取 可空 值
返回特定可为 null 值的属性的值。
class
参数必须是属性的RealmStorageType的KClass 。
以下代码片段概述了可用于不同值类型的不同函数:
// Retrieve a nullable int from a 'nullableIntField' property
dynamicRealmObject.getNullableValue("nullableIntField", Int::class)
// Retrieve a non-nullable int from an 'intField' property
dynamicRealmObject.getValue("intField", Int::class)
// Retrieve an object from an `objectField' property
dynamicRealmObject.getObject("objectField", DynamicRealmObject::class)
内容已复制到剪贴板
返回
参数
要检索其值的属性的名称。
clazz
值的 Kotlin 类。
t
值的类型。
抛出异常
如果类不包含具有特定名称的字段、 clazz
与属性的RealmStorageType.kClass不匹配或者尝试检索集合属性。