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.
これらのステートメントは同等のものですか?
value1 / pow(2, value2)と value1 >> value2
value1 / pow(2, value2)
value1 >> value2
value1 % value2 およびvalue1 & ( value2 - 1) (value2 は 2 の累乗)
value1 % value2
value1 & ( value2 - 1)
32 ビットまたは 64 ビットの整数になる場合に興味がvalue1あります。value2
value1
value2