是什么 ? | : | an all-purpose Java bytecode manipulation and analysis framework focused on performance. It was designed and implemented to be as small and as fast as possible, it is well suited for use in dynamic systems (but can of course be used in a static way too, e.g. in compilers). |
开发语言 | : | Java |
官方主页 | : | https://asm.ow2.io |
源码仓库 | : | https://gitlab.ow2.org/asm/asm |
ASM
相比其他Java ByteCode
操作框架来说,是比较低级的, 因为你必须对Java ByteCode
相当了解。但是,它通常是其他Java ByteCode
的底层框架。 如果能直接使用它的话,你会对Java
有个相当深的认识。
implementation("org.ow2.asm:asm:7.1")
implementation 'org.ow2.asm:asm:7.1'