Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
を使用せずにビット単位の XOR を実装する方法はあり^ますか?
^
1) 他のビット演算とは?
2) 算術演算で?
a xor b == (a and (not b)) or ((not a) and b)
なぜそれをしたいのかわかりませんが、: (a|b)&~(a&b)または(a&~b)|(b&~a) 算術バージョンは複雑すぎて、正当な理由がなければ試すことができません。
(a|b)&~(a&b)
(a&~b)|(b&~a)