-是一个内置方法红 gems 返回两个数字的减法。它返回 num1 - num2。
用法: num1 - num2
参数:该函数不接受任何参数。
返回值:它返回两个数字的减法。
示例 1:
# Ruby program for - method in Integer
# Initialize numbers
num1 = 15
num2 = 4
# Prints subtraction
print num1 - num2
输出:
11
示例 2:
# Ruby program for - method in Integer
# Initialize numbers
num1 = 21
num2 = 3
# Prints subtraction
print num1 - num2
输出:
18
相关用法
- 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 – function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。