&是一個內置方法紅 gems 返回兩個數字的按位與。它返回 num1 和 num2。
用法: num1 & num2
參數:該函數不接受任何參數。
返回值:它返回兩個數字的按位與。
示例 1:
# Ruby program for & method in Integer
# Initialize numbers
num1 = 15
num2 = 4
# Prints remainder
print num1 & num2
輸出:
4
示例 2:
# Ruby program for & method in Integer
# Initialize numbers
num1 = 21
num2 = 3
# Prints remainder
print num1 & num2
輸出:
1
相關用法
- Scala Integer ==用法及代碼示例
- Scala Integer -用法及代碼示例
- Scala Integer +用法及代碼示例
- Scala Integral.orElse用法及代碼示例
- Scala Integral.orElseBy用法及代碼示例
- Scala Integral.on用法及代碼示例
- Scala Int compareTo()用法及代碼示例
- Scala Int abs()用法及代碼示例
- Scala Int compare()用法及代碼示例
- Scala Int Compare用法及代碼示例
- Scala Int CompareTo用法及代碼示例
- Scala Int byteValue()用法及代碼示例
- Scala Int doubleValue()用法及代碼示例
- Scala Int floatValue()用法及代碼示例
- Scala Int getClass()用法及代碼示例
- Scala Int hashCode()用法及代碼示例
- Scala Int intValue()用法及代碼示例
- Scala Int isValidByte()用法及代碼示例
- Scala Int isValidChar()用法及代碼示例
- Scala Int isValidInt()用法及代碼示例
- Scala Int isValidLong()用法及代碼示例
- Scala Int isValidShort()用法及代碼示例
- Scala Int isWhole()用法及代碼示例
- Scala Int longValue()用法及代碼示例
- Scala Int max()用法及代碼示例
注:本文由純淨天空篩選整理自gopaldave大神的英文原創作品 Ruby | Integer & method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。