摘要: //运算符在操作数之后,称为“后增量”。i变量自增,返回自增之前的值;//运算符在操作数之前,称为“前增量”。i变量自增,返回自增之后的值。//自减同理 public static void test1(int i) { int j = i++; System.out.println("j = i+ 阅读全文
posted @ 2019-10-30 17:41 !O0O! 阅读(919) 评论(0) 推荐(0) 编辑