I executed the below program
int b = 0;
b=+1;
System.out.println(b);
b=+1;
System.out.println(b);
b=+1;
System.out.println(b);
and got output like 1 always. Why is the value of b incrementing in the first increment and why its not incrementing in the second and third incrementing operation?