/** * @author yew * @date on 2019/12/9 - 15:53 */ public class MainTest { public static void main(String[] args) { int a =1; int b=2; int c = (a+b)*10; System.out.println(c); } }
查看java程序的指令码
原文:https://www.cnblogs.com/vincentYw/p/12015171.html