摘要: package operator;public class Demo04 { public static void main(String[] args) { //++ -- 自增 , 自减 一元运算符 int a = 3; int b = a++; //执行完这行代码后,先给b赋值,再自增 //a 阅读全文
posted @ 2023-08-02 16:29 心流星雨 阅读(15) 评论(0) 推荐(0)