var x=10;
var y=20;
y+=++x;//y=31
y=x+++y;//y=30
Warum sind die Werte unterschiedlich? ? Könnte es sein, dass y unterschiedliche Werte hat? =x+ ++y Ist es nicht 31?
因为代码解析的时候并不是解析成
x+ ++y
而是解析成
x++ +y
因为代码解析的时候并不是解析成
x+ ++y
而是解析成
x++ +y