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


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


Ruby中的to_d函數將int的值轉換為BigDecimal。

用法:number.to_d 

參數:該函數采用要轉換為BigDecimal的整數。


返回值:該函數返回int的BigDecimal值。

範例1:

# Ruby program for to_d function  
   
require 'bigdecimal'
require 'bigdecimal/util'
   
# Initializing the number 
num1 = 5
num2 = 10 ** 100 
num3 = 1678 
num4 = 189790
    
# Prints the int as big-decimal  
puts num1.to_d 
puts num2.to_d 
puts num3.to_d 
puts num4.to_d

輸出

 0.5e1
0.1e101
0.1678e4
0.18979e6

範例2:

# Ruby program for to_d function  
   
require 'bigdecimal'
require 'bigdecimal/util'
   
# Initializing the number 
num1 = 5
num2 = 19**18
num3 = 2**45
num4 = 888
    
# Prints the int as big-decimal  
puts num1.to_d 
puts num2.to_d 
puts num3.to_d 
puts num4.to_d

輸出

0.5e1
0.104127350297911241532841e24
0.35184372088832e14
0.888e3


相關用法


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