java中自增自減問題int a =5;int b = a++;System.out.println(b);System.out.println(a);以上輸出語句中為啥 b是5 a是6 那個后++啥時候才能+1的結果體現出來呢? 查看完整描述