在 Kotlin 中 , ::
双冒号操作符 的作用是 获取 类 , 对象 , 函数 , 属性 的 类型对象 引用 ;
获取的这些引用 , 并不常用 , 都是在 Kotlin 反射操作时才会用到 ;
相当于 Java 中的 反射 类的 字节码类型 Class 类型 , 对象的类型 Class 类型 , 对象的函数 Method 类型 , 对象的属性字段 Field 类型 ;
在 Kotlin 中 , 使用 :: 双冒号操作符 获取 类的类型对象引用 代码格式为 :
Java或Kotlin类名::class
获取的 Kotlin 类 的 类型对象 的类型 为 KClass<类名>
, 如 : 获取 String 字符串类型的引用 , 代码为 :
String::class
获取的 String 类的引用类型 为 KClass<String>
,
代码示例 : 下面的代码中 , 通过 Student::class
获取的 引用对象的类型 是 KClass<Student>
;
import kotlin.reflect.KClass
class Student {
var name = "Tom"
var age = 18
fun info() {
println("$name is $age years old")
}
}
fun main() {
val studentClassRef: KClass<Student> = Student::class
}
Kotlin 中 类的引用类型 KClass 中 提供了很多有用的属性 , 如 :
public actual val simpleName: String?
属性可以获取类的简单名称 ;public val qualifiedName: String?
属性可以获取类的完整名称 ;kotlin.reflect.KClass 是 Kotlin 语言中的字节码类 , java.lang.Class 是 Java 语言的字节码类 ;
下面是 KClass 的原型 , 省略了后面的代码 ;
package kotlin.reflect
/**
* 表示一个类并提供内省功能。
* 此类的实例可通过 `::class` 语法获得。
* 更多信息请参见
* [Kotlin 语言文档]
* (https://kotlinlang.org/docs/reference/reflection.html#class-references)。
*
* @param T 类的类型。
*/
public actual interface KClass<T : Any> : KDeclarationContainer, KAnnotatedElement, KClassifier {
/**
* 类在源代码中声明的简单名称,
* 如果该类没有名称(例如,它是一个匿名对象文字),
* 则为 `null`。
*/
public actual val simpleName: String?
/**
* 类的全限定名称,以点分隔符分隔,
* 如果该类是本地类或匿名对象文字,则为 `null`。
*/
public val qualifiedName: String?
}
在 Kotlin 中 , 使用 :: 双冒号操作符 获取 对象类型的引用 代码格式为 :
Java或Kotlin实例对象::class
获取的 对象类型的引用 的类型 为 KClass<out 类名>
, 如 : 获取 String 字符串类型的引用 , 代码为 :
"Tom"::class
获取的 String 对象类型的引用 类型 为 KClass<out String>
,
在某种程度上 , 可以理解为 类的引用 等同于 对象的引用 ;
代码示例 : 下面的代码中 , 通过 var student: Student = Student()
实例对象 , 获取的 引用对象类型的类型 是 KClass<out Student>
;
import kotlin.reflect.KClass
class Student {
var name = "Tom"
var age = 18
fun info() {
println("$name is $age years old")
}
}
fun main() {
var student: Student = Student()
val studentObjectRef: KClass<out Student> = student::class
}
调用 类名::函数名
获取的 函数类型 引用 , 其类型是函数类型的 , 如下代码中 ,
调用 Student::info
获取的函数类型变量 的 类型为 (Student) -> Unit
, 该函数引用 可以直接调用 invoke
函数执行对应的 被引用函数 ;
class Student {
var name = "Tom"
var age = 18
fun info() {
println("$name is $age years old")
}
}
fun main() {
var student: Student = Student()
var studentInfo: (Student) -> Unit = Student::info
studentInfo.invoke(student)
}
执行结果如下 :
如下代码中 , 使用 Student::name
代码 , 获取 Student 类的 name 属性类型为 KMutableProperty1<Student, String>
, 获取到该 name 属性的引用 , 相当于 Java 反射中的 Field 对象 , 调用 KMutableProperty1#get
函数 传入 Student
实例对象 , 可以获取该实例对象的 name
属性 ;
import kotlin.reflect.KMutableProperty1
class Student {
var name = "Tom"
var age = 18
fun info() {
println("$name is $age years old")
}
}
fun main() {
var student: Student = Student()
var studentName: KMutableProperty1<Student, String> = Student::name
println(studentName.get(student))
}
KClass 是 Kotlin 类的 引用类型 , 是 Kotlin 类的实例对象 , 通过 类名::class 可以获取 KClass 引用 ;
KClass 提供了关于 Kotlin 类的一系列功能 , 包括 :
KClass 的全类名是 kotlin.reflect.KClass , Class 的全类名是 java.lang.Class ;
与 KClass 相对的是 Java 中的 Class 类 , 是 Java 中的 类的 引用类型 ;
Class 提供了关于 Java 类的一系列功能 , 包括 :
代码示例 :
import kotlin.reflect.KClass
import kotlin.reflect.KProperty0
import kotlin.reflect.KProperty1
class Student {
var name = "Tom"
var age = 18
fun info() {
println("$name is $age years old")
}
}
fun main() {
// Student 实例对象
var student: Student = Student()
// kotlin.reflect.KClass
var kClazz: KClass<Student> = Student::class
// kotlin.reflect.KClass
var studentClazz: KClass<out Student> = student::class
// java.lang.Class
var javaClass: Class<Student> = Student::class.java
// java.lang.Class
var studentJavaClazz: Class<out Student> = student::class.java
// KProperty1<Student, Class<Student>>
var javaClass2: KProperty1<Student, Class<Student>> = Student::javaClass
// KProperty0<Class<Student>>
var studentJavaClass2: KProperty0<Class<Student>> = student::javaClass
}