摘要: JVM字节码1、通过javap命令查看class文件的字节码内容 首先,看下面简单的代码: public class Test1 { public static void main(String[] args) { int a = 2; int b = 5; int c = b - a; Syste 阅读全文
posted @ 2020-03-11 14:50 小猪会拱菜 阅读(140) 评论(0) 推荐(0)