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.
いつどのよう&に機能するか
&
int num1=10,num2=9; int res=num1 & num2; // where num1 and num2 are integers
res=8;どのように機能しているかの価値
res=8;
は&ビットごとの AND 演算子です。結果の各ビットは、対応するビットが num1とnum2の両方で設定されている場合にのみ設定されます。
数値を 2 進数で書くと、より意味のあるものになる可能性があります。
num1 1010 = 10 num2 1001 = 9 ------------------------ num1 & num2 1000 = 8