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


Ruby BigDecimal clone用法及代碼示例


BigDecimal#clone():clone()是BigDecimal類方法,該方法返回BigDecimal值的克隆值。

用法: BigDecimal.clone()

參數:BigDecimal值以查找克隆值


返回:BigDecimal值的克隆值

代碼#1:clone()方法示例

# Ruby code for clone() method 
  
# loading BigDecimal 
require 'bigdecimal'
  
  
# declaring BigDecimal 
b = -BigDecimal("10") 
  
  
puts "clone example 2:#{b.clone()}\n\n"
     

輸出:

clone example 2:-0.1E2

代碼2:clone()方法示例

# Ruby code for clone() method 
  
# loading BigDecimal 
require 'bigdecimal'
  
# declaring BigDecimal 
b = BigDecimal('10')-(22 ** 7.1) ** 10
  
# declaring BigDecimal 
c = BigDecimal('-3') 
  
  
puts "clone example 2:#{b.clone()}\n\n"
  
puts "clone example 3:#{c.clone()}\n\n"

輸出:

clone example 2:-0.20512110073058639999999999999999999999999999999999999999999999999999999999999999999999999999999E96

clone example 3:-0.3E1



相關用法


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