有大神解释下吗
计算的同时就是在给three赋值
int one = 10 ;
int two = 20 ;
int three = 0 ;
three=one + two 跟 three =30是等价的。