摘要: public class One { public static void main(String[] args) { //++ -- 自增 自减 一元运算符 int a = 3; int b = a++; //a++ a = a + 1 //执行完这行代码后,先给b赋值 System.out.pr 阅读全文
posted @ 2021-01-14 21:37 JAVA初当力 阅读(79) 评论(0) 推荐(0) 编辑