int a = 3; int b = ++a; // b 會等於4 int c = a++; // c 會等於4 int d = --a; // d 會等於4 int e = a--; // e 會等於4. 邏輯補數運算子會把true 變成false ...
確定! 回上一頁