摘要: i++:先引用后加 ++I:先加后引用 示例代码: public static void main(String... args) { int a = 88; int c = a++; System.out.println(a); System.out.println(c); int b = 99; 阅读全文
posted @ 2021-05-13 17:25 9999号打工仔 阅读(71) 评论(0) 推荐(0) 编辑