简体   繁体   中英

ByteBuddy: generate a static initializer?

ByteBuddy provides LoadedTypeInitializer but it is not persisted in generated bytecode.

Is it possible to generate a static initialisation block?

class Foo { static { /** Added code here **/ } }

Yes, on the builder:

builder.invokeable(isTypeInitializer()).intercept(...)

This way you can define it just as any static method.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM