asm inline:Java内联原始ASM指令 源码
内联汇编 一开始我以为:哦,我可以为Proguard做一个优化转换器然后这发生了。 例子: public class Test { public static void main ( String [] args ) { AsmBlock . inline(b - > { b . getstatic( System . class, " out " , PrintStream . class) .ldc( " Hello, World! " ) .invokevirtual( PrintStream . class, " println " , MethodType . methodType( Void . TYPE , String . class)); // Note that R
用户评论