bitand( ) 函数用法
生活随笔
收集整理的這篇文章主要介紹了
bitand( ) 函数用法
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
bitand( ) 函數
返回兩個數值型數值在按位進行 AND 運算后的結果。
語法
BITAND(nExpression1, nExpression2)
參數
nExpression1, nExpression2
指定按位進行 AND 運算的兩個數值。如果 nExpression1 和 nExpression2 為非整數型,那么它們在按位進行 AND 運算之前轉換為整數。
返回值類型
數值型
說明
BITAND( ) 將 nExpression1 的每一位同 nExpression2 的相應位進行比較。如果 nExpression1 和 nExpression2 的位都是 1,相應的結果位就是 1;否則相應的結果位是 0。
下表列出對 nExpression1 和 nExpression2 按位進行 AND 運算的結果:
nExpression1 位 nExpression2 位 結果位
0 0 0
0 1 0
1 1 1
1 0 0
bitand( ) 函數示例
x = 5&& 二進制為 0101
y = 6&& 二進制為 0110
? bitand(x,y) && 返回值 4,二進制為 0100
總結
以上是生活随笔為你收集整理的bitand( ) 函数用法的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: LBP(local binary pat
- 下一篇: nnz 函数