這是代碼。我知道C++和++ c之間的區別。
public class sample {
public static void main(String[] b){
int count = 0,a=0;
for (int i = 0; i < 3; i++){
count=count++;
System.out.println(count);
}
但是我期待是
count=count;count=count+1;//output has to be 1 2 3
但輸出是0 0 0
+1哎喲,這是你有的討厭的東西。 –
我想了解不實施的概念... – freshDroid