如何在包级功能,成员等上使用反射?尝试访问substr($string, strlen($string) - 2, 2)
或javaClass
不起作用,class
也不起作用。
答案 0 :(得分:7)
Kotlin尚不支持对顶级功能或属性的反思,但计划在未来使用。目前支持的唯一功能允许您获取与给定Java反射对象相对应的Kotlin反射对象,要求您事先使用Java反射:
kotlinFunction
通过kotlin.reflect.KFunction
实例或java.lang.reflect.Method
实例java.lang.reflect.Constructor
个实例
kotlinProperty
通过kotlin.reflect.KProperty
实例java.lang.reflect.Field
个实例
要使用它们,必须首先使用Java反射获取相应的方法或字段:
package a
import kotlin.reflect.jvm.*
fun foo() {}
fun reflectFoo() {
// a.TestKt is the JVM class name for the file test.kt in the package a
val c = Class.forName("a.TestKt")
val m = c.getDeclaredMethod("foo")
val f = m.kotlinFunction!!
// f is a KFunction instance, so you can now inspect its parameters, annotations, etc.
println(f.name)
println(f.returnType)
...
}