元编程简介
元编程:代码在‘编译期’或‘运行时’ 生成或改变代码的一种‘编程形式’。
编写‘元程序’的语言称作‘元语言’,被操纵的语言称作‘目标语言’。
‘反射’是指,一门语言同时具备既是‘元语言’又是‘目标语言’的能力。
一般代码的操作对象是‘数据’,元编程的操作对象是‘其他代码’,无关业务逻辑,只跟当前代码结构相关的代码。
元编程是一种对‘源代码’本身进行‘高层次抽象’的编码技术。 就是用代码中的元数据(注解)来动态插入新代码逻辑,动态生成代码的程序。
注解是给代码添加的元数据。 使用注解可以写出简洁、干净的代码,同时可以在编译期进行类型检查。 Kotlin 注解完全兼容 Java 注解。
反射是在‘运行时’获取类的函数、属性、父类、接口、注解元数据、泛型信息 等类的内部信息的机制。 (运行时类型信息)
注解
@MustBeDocumented
@Repeatable
@Target(AnnotationTarget.CLASS, AnnotationTarget.FUNCTION,
AnnotationTarget.VALUE_PARAMETER)
@Retention(AnnotationRetention.RUNTIME)
annotation class Run
@MustBeDocumented
@Repeatable
@Target(AnnotationTarget.CLASS, AnnotationTarget.FUNCTION,
AnnotationTarget.VALUE_PARAMETER)
@Retention(AnnotationRetention.RUNTIME)
annotation class TestCase(val id: String)
注解 是一种class ,编译器可以对注解在编译期进行类型检查。 自定义的注解使用到的注解(@Target、@Retention、@Repeatable、@MustBeDocumented),称作元注解 。使用元注解向自定义的注解类来指定属性。
-
@Target :指定该注解可以被用于哪些元素。
- AnnotationTarget.CLASS
类 - AnnotationTarget.ANNOTATION_CLASS
注解类 - AnnotationTarget.TYPE_PARAMETER
泛型参数 - AnnotationTarget.PROPERTY
属性 - AnnotationTarget.FIELD
成员变量 - AnnotationTarget.FUNCTION
函数 - AnnotationTarget.LOCAL_VARIABLE
局部变量 - AnnotationTarget.TYPE
类、接口、注解类型、enum - AnnotationTarget.EXPRESSION
表达式 - AnnotationTarget.FILE
文件 - AnnotationTarget.TYPEALIAS
类型别名 - 等等,还有其他区域(元素)。
-
@Retention :指定该注解信息是否保存到编译后的 class 文件中,在运行时是否可以通过反射访问到它。
- AnnotationRetention.SOURCE 注解数据不存储在二进制输出中
- AnnotationRetention.BINARY 注解数据保存在二进制输出中,但反射不可见
- AnnotationRetention.RUNTIME 注解数据保存在二进制输出中,同时反射可用(默认)
-
@Repeatable :允许在某个元素上多次使用同一个注解 -
@MustBeDocumented :表面该注解是公开 API 的一部分,在自动生成的 API 文档/函数签名中,包含该注解的信息。
@Run
class AnnoxTest {
@TestCase(id = "0x001")
fun testF(tId: String): Unit {
println("AnnoxTest ID = $tId")
}
}
fun annoProcessingF(): Unit {
val tx = AnnoxTest()
val kClaz= tx::class
println(kClaz)
val declaredFunz = kClaz.declaredFunctions
println(declaredFunz)
for (f in declaredFunz) {
val annoZ = f.annotations
println("annotations: ${annoZ.size}")
annoZ.forEach {
println(it.annotationClass)
if (it is TestCase) {
val id = it.id
handleParam(id)
f.call(tx, id)
}
}
}
}
fun handleParam(id: String) {
println("handle param in annoProcessingF : $id , ${Date()}")
}
fun main(args: Array<String>) {
annoProcessingF()
}
反射
类引用
反射 是在运行时获取一个类引用。
open class BaseBox<T>
class Box<T: Comparable<T>> : BaseBox<Int> {
var data: MutableList<T>
constructor(elements: MutableList<T>) {
this.data = elements
}
fun sort(): Box<T> {
this.data.sort()
return this
}
override fun toString(): String {
return "Box{elements= $data}"
}
}
fun testClazzReflect(): Unit {
val list = mutableListOf(1,3,9,6,6)
println(list::class)
val box = Box(list)
box.sort()
println(box.toString())
val kClazz = box::class
println("kotlin class: $kClazz")
val jClazz = box.javaClass
println("java class: $jClazz")
println(kClazz.java)
}
fun testKClazzReflectF(): Unit {
val list = mutableListOf(1,3,9,6,6)
val box = Box(list)
val kClazz = box::class
val typeParams = kClazz.typeParameters
println(typeParams)
val kTypeParam = typeParams[0]
println(kTypeParam)
println(kTypeParam.isReified)
println(kTypeParam.name)
println(kTypeParam.upperBounds)
println(kTypeParam.variance)
val constructors = kClazz.constructors
for (kFunc in constructors ) {
val params = kFunc.parameters
params.forEach {
val name = it.name
val type = it.type
println("name= $name")
println("type= $type")
for (projection in type.arguments) {
println("argument: ${projection.type}")
}
}
}
}
函数引用
fun isOdd(x: Int): Boolean {
return x%2!=0
}
fun testFuncReflect(): Unit {
println(isOdd(9))
println(isOdd(2))
val nums = listOf(1,3,6)
val data = nums.filter( ::isOdd )
println(data)
}
属性引用
var nickName = "Sermon"
fun testPropertyReflect(): Unit {
println(::nickName.get())
::nickName.set("David")
println(::nickName.get())
println(nickName)
}
绑定函数和属性引用
fun testBoundFuncAndPropertyReflect(): Unit {
val regex = "\\d+".toRegex()
val a0 = regex.matches("9")
val b0 = regex.matches("3")
val c0 = regex.matches("Z")
println("$a0, $b0, $c0")
val isDigit = regex::matches
val a1 = isDigit("9")
val b1 = isDigit("3")
val c1 = isDigit("Z")
println("$a1, $b1, $c1")
}
|