当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。