Module jdk.dynalink

Interface MethodTypeConversionStrategy

功能接口:
这是一个功能接口,因此可以用作lambda表达式或方法引用的赋值目标。

@FunctionalInterface public interface MethodTypeConversionStrategy
用于表示将方法句柄转换为新类型的策略的对象的接口。典型用法是自定义语言运行时处理方法调用转换的 方法调用转换
  • Method Details

    • asType

      MethodHandle asType(MethodHandle target, MethodType newType)
      将方法句柄转换为新类型。
      参数:
      target - 目标方法句柄
      newType - 新类型
      返回值:
      将目标转换为新类型。