反射

    On the JVM platform, the runtime component required for using the reflection features is distributed as a separate artifact in the Kotlin compiler distribution. This is done to reduce the required size of the runtime library for applications that do not use reflection features.

    To use reflection in a Gradle or Maven project, add the dependency on kotlin-reflect:

    • In Gradle:

      1. dependencies {
      2. implementation("org.jetbrains.kotlin:kotlin-reflect:1.4.20")
      3. }
      • In Maven:
      1. <dependencies>
      2. <dependency>
      3. <groupId>org.jetbrains.kotlin</groupId>
      4. <artifactId>kotlin-reflect</artifactId>
      5. </dependency>
      6. </dependencies>

    If you don’t use Gradle or Maven, make sure you have kotlin-reflect.jar in the classpath of your project. In other supported cases (IntelliJ IDEA projects, using command-line compiler or Ant), it is added by default. In command-line compiler and Ant, you can use -no-reflect compiler option to exclude kotlin-reflect.jar from the classpath.

    最基本的反射功能是获取 Kotlin 类的运行时引用。要获取对静态已知的 Kotlin 类的引用,可以使用 类字面值 语法:

    1. val c = MyClass::class

    该引用是 类型的值。

    请注意,Kotlin 类引用与 Java 类引用不同。要获得 Java 类引用, 请在 KClass 实例上使用 .java 属性。

    通过使用对象作为接收者,可以用相同的 ::class 语法获取指定对象的类的引用:

    1. val widget: Widget = ……
    2. assert(widget is GoodWidget) { "Bad widget: ${widget::class.qualifiedName}" }

    你可以获取对象的精确类的引用,例如 GoodWidgetBadWidget,尽管接收者表达式的类型是 Widget

    函数、属性以及构造函数的引用,除了作为自省程序结构外, 还可以用于调用或者用作函数类型的实例。

    所有可调用引用的公共超类型是 , 其中 R 是返回值类型,对于属性是属性类型,对于构造函数是所构造类型。

    1. fun isOdd(x: Int) = x % 2 != 0

    我们可以很容易地直接调用它(isOdd(5)),但是我们也可以将其作为一个函数类型的值,例如将其传给另一个函数。为此,我们使用 :: 操作符:

    1. fun isOdd(x: Int) = x % 2 != 0
    2. fun main() {
    3. //sampleStart
    4. val numbers = listOf(1, 2, 3)
    5. println(numbers.filter(::isOdd))
    6. //sampleEnd
    7. }

    这里 ::isOdd 是函数类型 (Int) -> Boolean 的一个值。

    函数引用属于 KFunction<out R> 的子类型之一,取决于参数个数,例如 KFunction3<T1, T2, T3, R>

    当上下文中已知函数期望的类型时,:: 可以用于重载函数。 例如:

    1. fun main() {
    2. //sampleStart
    3. fun isOdd(x: Int) = x % 2 != 0
    4. fun isOdd(s: String) = s == "brillig" || s == "slithy" || s == "tove"
    5. val numbers = listOf(1, 2, 3)
    6. println(numbers.filter(::isOdd)) // 引用到 isOdd(x: Int)
    7. //sampleEnd

    或者,你可以通过将方法引用存储在具有显式指定类型的变量中来提供必要的上下文:

    如果我们需要使用类的成员函数或扩展函数,它需要是限定的,例如 String::toCharArray

    请注意,即使以扩展函数的引用初始化一个变量,其推断出的函数类型也会没有接收者(它会有一个接受接收者对象的额外参数)。如需改为带有接收者的函数类型,请明确指定其类型:

    1. val isEmptyStringList: List<String>.() -> Boolean = List<String>::isEmpty

    示例:函数组合

    考虑以下函数:

    1. return { x -> f(g(x)) }
    2. }

    它返回一个传给它的两个函数的组合:compose(f, g) = f(g(*))。 现在,你可以将其应用于可调用引用:

    1. fun <A, B, C> compose(f: (B) -> C, g: (A) -> B): (A) -> C {
    2. return { x -> f(g(x)) }
    3. }
    4. fun isOdd(x: Int) = x % 2 != 0
    5. fun main() {
    6. //sampleStart
    7. fun length(s: String) = s.length
    8. val oddLength = compose(::isOdd, ::length)
    9. val strings = listOf("a", "ab", "abc")
    10. println(strings.filter(oddLength))
    11. //sampleEnd
    12. }

    要把属性作为 Kotlin中 的一等对象来访问,我们也可以使用 :: 运算符:

    1. val x = 1
    2. fun main() {
    3. println(::x.get())
    4. println(::x.name)
    5. }

    表达式 ::x 求值为 KProperty<Int> 类型的属性对象,它允许我们使用 get() 读取它的值,或者使用 name 属性来获取属性名。更多信息请参见。

    对于可变属性,例如 var y = 1::y 返回 KMutableProperty<Int> 类型的一个值, 该类型有一个 set() 方法。

    1. var y = 1
    2. fun main() {
    3. ::y.set(2)
    4. println(y)
    5. }
    1. fun main() {
    2. //sampleStart
    3. val strs = listOf("a", "bc", "def")
    4. println(strs.map(String::length))
    5. //sampleEnd
    6. }

    要访问属于类的成员的属性,我们这样限定它:

    1. fun main() {
    2. //sampleStart
    3. class A(val p: Int)
    4. val prop = A::p
    5. //sampleEnd
    6. }

    对于扩展属性:

    与 Java 反射的互操作性

    在 JVM 平台上,标准库包含反射类的扩展,它提供了与 Java 反射对象之间映射(参见 kotlin.reflect.jvm 包)。 例如,要查找一个用作 Kotlin 属性 getter 的 幕后字段或 Java方法,可以这样写:

    1. import kotlin.reflect.jvm.*
    2. class A(val p: Int)
    3. fun main() {
    4. println(A::p.javaGetter) // 输出 "public final int A.getP()"
    5. println(A::p.javaField) // 输出 "private final int A.p"
    6. }

    要获得对应于 Java 类的 Kotlin 类,请使用 .kotlin 扩展属性:

    1. fun getKClass(o: Any): KClass<Any> = o.javaClass.kotlin

    构造函数可以像方法和属性那样引用。他们可以用于期待这样的函数类型对象的任何地方:它与该构造函数接受相同参数并且返回相应类型的对象。 通过使用 :: 操作符并添加类名来引用构造函数。考虑下面的函数, 它期待一个无参并返回 Foo 类型的函数参数:

    1. class Foo
    2. fun function(factory: () -> Foo) {
    3. val x: Foo = factory()
    4. }

    使用 ::Foo,类 Foo 的零参数构造函数,我们可以这样简单地调用它:

    1. function(::Foo)

    构造函数的可调用引用的类型也是 的子类型之一 ,取决于其参数个数。

    你可以引用特定对象的实例方法:

    1. fun main() {
    2. //sampleStart
    3. val numberRegex = "\\d+".toRegex()
    4. println(numberRegex.matches("29"))
    5. val isNumber = numberRegex::matches
    6. println(isNumber("29"))
    7. //sampleEnd
    8. }

    取代直接调用方法 matches 的是我们存储其引用。 这样的引用会绑定到其接收者上。 它可以直接调用(如上例所示)或者用于任何期待一个函数类型表达式的时候:

    1. fun main() {
    2. //sampleStart
    3. val numberRegex = "\\d+".toRegex()
    4. val strings = listOf("abc", "124", "a70")
    5. println(strings.filter(numberRegex::matches))
    6. //sampleEnd
    7. }

    比较绑定的类型和相应的未绑定类型的引用。 绑定的可调用引用有其接收者“附加”到其上,因此接收者的类型不再是参数:

    1. val isNumber: (CharSequence) -> Boolean = numberRegex::matches
    2. val matches: (Regex, CharSequence) -> Boolean = Regex::matches

    属性引用也可以绑定:

    自 Kotlin 1.2 起,无需显式指定 this 作为接收者:this::foo::foo 是等价的。

    绑定的构造函数引用

    1. class Outer {
    2. inner class Inner
    3. }
    4. val o = Outer()