类 InvocationDelegate
java.lang.Object
org.babyfish.jimmer.impl.util.InvocationDelegate
- 所有已实现的接口:
InvocationHandler
Helper class for kotlin.
In kotlin, `method.invoke(target, *args)` will throw NPE if `args` is null. However, the `InvocationHandler` of JDK proxy may give null `args`.
- In kotlin, `method.invoke(target, args)` is different with java, it wraps `args` into a new array
- `method.invoke(target, *(args ?: emptyArray<Any?>()))` has unnecessary cost
-
构造器概要
构造器 -
方法概要
-
构造器详细资料
-
InvocationDelegate
-
-
方法详细资料
-
invoke
- 指定者:
invoke在接口中InvocationHandler- 抛出:
Throwable
-