摘要: 自增运算符 代码演示 public static void main(String[] args) { int a = 1; int b = a++; System.out.println("a="+a); // 2 int c = ++a; System.out.println("b="+b); 阅读全文
posted @ 2020-07-10 13:26 大酷仔 阅读(172) 评论(0) 推荐(0) 编辑