質問

I have the following expression to calculate a parity bit:

AB0E XOR 73C9 XOR D46A XOR 06E3

How would this be evaluated? Is it:

(((AB0E XOR 73C9) XOR D46A) XOR 06E3)

or is it:

(AB0E XOR (73C9 XOR (D46A XOR 06E3)))

役に立ちましたか?

解決

There is no difference; XOR is associative.

他のヒント

Since expressions have the same level or priority, so precedence will be left to right

ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top