當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Ruby Integer size()用法及代碼示例


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


相關用法


注:本文由純淨天空篩選整理自gopaldave大神的英文原創作品 Ruby Integer size() function with example。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。