- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
SerializedLambda 的签名如下:
SerializedLambda(Class capturingClass, String functionalInterfaceClass, String functionalInterfaceMethodName, String functionalInterfaceMethodSignature, int implMethodKind, String implClass, String implMethodName, String implMethodSignature, String instantiatedMethodType, Object[] capturedArgs)
deserializeLambda
之一。 :
SerializedLambda has a readResolve method that looks for a (possibly private) static method called $deserializeLambda$(SerializedLambda) in the capturing class, invokes that with itself as the first argument
implClass
是为了。
Get the name of the class containing the implementation method.
implClass
和有什么区别和
capturingClass
?
最佳答案
使用当前的编译器,lambda 表达式总是被编译为同一个类中的合成方法,包含 lambda 表达式的主体。对于那些 lambda 表达式,捕获类始终与“implClass”相同。
但是对于不需要辅助方法的方法引用,“implClass”将是目标方法的声明类,而捕获类是包含方法引用的类。
例如,以下示例
public class SerializedLambdaExample {
public static void main(String[] args) throws ReflectiveOperationException {
var hex = (IntFunction<String>&Serializable)Integer::toHexString;
Method m = hex.getClass().getDeclaredMethod("writeReplace");
m.setAccessible(true);
SerializedLambda sl = (SerializedLambda)m.invoke(hex);
System.out.println("cap: "+sl.getCapturingClass());
System.out.println("target: "+sl.getImplClass()+" "+sl.getImplMethodName());
}
}
cap: SerializedLambdaExample
target: java/lang/Integer toHexString
关于java - Java SerializedLambda 的 captureClass 和 implClass 有什么区别?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61471823/
SerializedLambda 的签名如下: SerializedLambda(Class capturingClass, String functionalInterfaceClass, Stri
我是一名优秀的程序员,十分优秀!