关于Java中的赋值运算符
public class HelloWorld{
public static void main(String[] args) {
int one = 10 ;
int two = 20 ;
int three = 0 ;
int sum1=one+two;
int sum2=sum1+=one;
System.out.println(sum1);
————————————————————
为什么不要 int sum2=sum1+=one;这一行,结果输出为30;而加了这一行结果变成40.
望能者解答,不胜感激。