Ruby中的size()函数返回int的机器表示形式中的字节数。
用法:number.size
参数:该函数采用返回字节数的整数。
返回值:该函数返回字节数。
例子1:
# Ruby program for size() function
# Initializing the numbers
num1 = 18
num2 = 2**1000
num3 = 2**19
num4 = 5**100
# Printing the size value
puts num1.size
puts num2.size
puts num3.size
puts num4.size
输出:
8 126 8 30
范例#2:
# Ruby program for size() function
# Initializing the numbers
num1 = 18
num2 = 5**1000
num3 = 19**19
num4 = 12**100
# Printing the number
# bytes used
puts num1.size
puts num2.size
puts num3.size
puts num4.size
输出:
8 291 11 45
相关用法
- Ruby Integer integer?用法及代码示例
- Ruby Integer chr用法及代码示例
- Ruby Integer even?用法及代码示例
- Ruby Integer abs()用法及代码示例
- Ruby Integer div()用法及代码示例
- Ruby Integer odd?用法及代码示例
- Ruby Integer next用法及代码示例
- Ruby Integer lcm()用法及代码示例
- Ruby Integer gcd()用法及代码示例
- Ruby Integer modulo()用法及代码示例
- Ruby Integer to_s用法及代码示例
注:本文由纯净天空筛选整理自gopaldave大神的英文原创作品 Ruby Integer size() function with example。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。