标签: java operators operator-precedence
int x = 2; int p = x-- + 3 * x;
这是打印5。有人可以解释这种行为,乘法运算符具有比添加运算符更高的优先级。鉴于此,它应该打印8