-
- Functional Interface:
- 这是一个功能接口,因此可以用作lambda表达式或方法引用的赋值目标。
@FunctionalInterface public interface MethodTypeConversionStrategy
表示将方法句柄转换为新类型的策略的对象的接口。 典型用法是自定义语言运行库对method invocation conversions
的处理。
-
-
方法摘要
所有方法 实例方法 抽象方法 变量和类型 方法 描述 MethodHandle
asType(MethodHandle target, MethodType newType)
将方法句柄转换为新类型。
-
-
-
方法详细信息
-
asType
MethodHandle asType(MethodHandle target, MethodType newType)
将方法句柄转换为新类型。- 参数
-
target
- 目标方法句柄 -
newType
- 新类型 - 结果
- target converted to the new type.
-
-