JavaScript is disabled on your browser.
Skip navigation links
Java SE 21 & JDK 21
Overview
Module
Package
Class
Use
Tree
Preview
New
Deprecated
Index
Help
Summary:
Nested
Field
Constr
Method
Detail:
Field
Constr
Method
Summary:
Nested |
Field |
Constr |
Method
Detail:
Field |
Constr |
Method
SEARCH
Module
jdk.dynalink
Package
jdk.dynalink.linker
Interface MethodTypeConversionStrategy
功能接口:
这是一个功能接口,因此可以用作lambda表达式或方法引用的赋值目标。
@FunctionalInterface
public interface
MethodTypeConversionStrategy
用于表示将方法句柄转换为新类型的策略的对象的接口。典型用法是自定义语言运行时处理方法调用转换的
方法调用转换
。
Method Summary
All Methods
Instance Methods
Abstract Methods
Modifier and Type
Method
Description
MethodHandle
asType
(
MethodHandle
target,
MethodType
newType)
将方法句柄转换为新类型。
Method Details
asType
MethodHandle
asType
(
MethodHandle
target,
MethodType
newType)
将方法句柄转换为新类型。
参数:
target
- 目标方法句柄
newType
- 新类型
返回值:
将目标转换为新类型。