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


Ruby BigDecimal to_r()用法及代碼示例


BigDecimal#to_r():to_r()是BigDecimal類方法,它以有理數形式返回Big decimal的值。

用法:BigDecimal.to_r()

參數:BigDecimal值


返回:大十進製值作為有理數

示例1:

# Ruby code for BigDecimal.to_r() method 
  
# loading library 
require 'bigdecimal'
require 'bigdecimal/util'
  
# declaring bigdecimal 
a = BigDecimal("10") 
  
# declaring bigdecimal 
b = -BigDecimal("10") 
  
# declaring bigdecimal 
c = -BigDecimal("11.43") 
  
# to_r() method 
puts "BigDecimal a to_r method : #{a.to_r()}\n\n"
  
puts "BigDecimal b to_r method : #{b.to_r()}\n\n"
  
puts "BigDecimal c to_r method : #{c.to_r()}\n\n"

輸出:

BigDecimal a to_r method : 10/1

BigDecimal b to_r method : -10/1

BigDecimal c to_r method : -1143/100

示例2:

# Ruby code for BigDecimal.to_r() method 
  
# loading library 
require 'bigdecimal'
require 'bigdecimal/util'
  
# declaring bigdecimal 
a = BigDecimal('12')*12
  
# declaring bigdecimal 
b = BigDecimal('10')-(22 ** 7.1) ** 10
  
# declaring bigdecimal 
c = BigDecimal('-3') 
  
# to_r() method 
puts "BigDecimal a to_r method : #{a.to_r()}\n\n"
  
puts "BigDecimal b to_r method : #{b.to_r()}\n\n"
  
puts "BigDecimal c to_r method : #{c.to_r()}\n\n"

輸出:

BigDecimal a to_r method : 144/1

BigDecimal b to_r method : -205121100730586399999999999999999999999999999999999999999999999999999999999999999999999999999990/1

BigDecimal c to_r method : -3/1



相關用法


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