摘要: public static void main(String[] args) { for (int i = 0; i < args.length; i++) { System.out.println(args[i]); //空 } System.out.println(args.length); / 阅读全文
posted @ 2020-11-16 17:11 fangyanr 阅读(528) 评论(0) 推荐(0) 编辑
摘要: 栈和局部变量操作 将常量压入栈的指令 aconst_null 将null对象引用压入栈 iconst_m1 将int类型常量-1压入栈 iconst_0 将int类型常量0压入栈 iconst_1 将int类型常量1压入栈 iconst_2 将int类型常量2压入栈 iconst_3 将int类型常 阅读全文
posted @ 2020-11-16 17:10 fangyanr 阅读(106) 评论(0) 推荐(0) 编辑