Java i++ ++i 差別指定運算. 先來釐清簡單的 i++也是i = i + 1 i--也是i = i - 1 範例1: int i = 0; i = i + 1; System.out.println(i); i = i - 1;
確定! 回上一頁