gpt4 book ai didi

java - 字节好友 : How to do method delegation/forwarding to a volatile field

转载 作者:行者123 更新时间:2023-11-30 07:58:46 24 4
gpt4 key购买 nike

我有(伪代码)这样​​的东西:

final Class<OUT> newClass = (Class<OUT>) new ByteBuddy()
.subclass(Object.class)
.name(newName)
.implement(SomeInterface.class, SomeOtherInterface.class)
.method(ElementMatchers.isMethod())
.intercept(
ExceptionMethod.throwing(UnsupportedOperationException.class,
"calling this method is not supported"))
// in fact I am matching for more than a single method here
.method(ElementMatchers.named("getUuid"))
.intercept(
MethodDelegation.toInstanceField(SomeOtherInterface.class, "delegate"))
.make()
.load(aBusinessEntityClass.getClassLoader(), ClassLoadingStrategy.Default.WRAPPER)
.getLoaded();

我当前的问题是:我需要我的delegate 字段volatile。我怎样才能做到这一点?

最佳答案

toInstanceField API 已随 Byte Buddy 1.5.0 一起退役,取而代之的是新的检测 API,您可以在其中显式定义字段:

new ByteBuddy()
.defineField("delegate", SomeOtherInterface.class, VOLATILE)
.method(ElementMatchers.named("getUuid"))
.intercept(MethodDelegation.toField("delegate"));

这允许做其他事情,例如添加注释等。

现在所有实现都实现了这种方法。新版本今天发布。

关于java - 字节好友 : How to do method delegation/forwarding to a volatile field,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40124516/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com