--和++与比较符的优先级问题
发布网友
发布时间:2022-05-23 03:49
我来回答
共1个回答
热心网友
时间:2023-10-12 07:07
++优先级大于>
但是,C语言规范规定(C99标准)
The result of the postfix ++ operator is the value of the operand. After the result is obtained, the value of the operand is incremented.
后自增表达式的结果值就是被自增之前的那个值,然后这个结果值被确定之后,操作数的值会被自增。
所以,你看到的是比较之后++