I Java

int i=123;
i=i+1;
//is the same as
i+=1;
//or
i++;
//or
++i;
dan1st