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


Ruby BigDecimal inspect用法及代码示例


BigDecimal#inspect():inspect()是BigDecimal类方法,该方法将有关值的调试信息作为逗号分隔的值字符串返回。

用法: BigDecimal.inspect()

参数:BigDecimal值以查找检查值


返回:
第一部分-地址
第二-值作为字符串
最后一部分-有效数字的当前数目和最大数目。

代码#1:inspect()方法示例

# Ruby code for inspect() method 
  
# loading BigDecimal 
require 'bigdecimal'
  
# declaring BigDecimal 
a = 42.1**13
  
# declaring BigDecimal 
b = -BigDecimal("10") 
  
# declaring BigDecimal 
c = -(22 ** 7.1) * 10
  
  
# a 
puts "inspect value of a:#{a.inspect}\n\n"
  
# b 
puts "inspect value of b:#{b.inspect}\n\n"
  
# c 
puts "inspect value of c:#{c.inspect}\n\n"
     

输出:

inspect value of a:1.3051704902006439e+21

inspect value of b:#

inspect value of c:-33978252067.813686

代码2:inspect()方法示例

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

输出:

inspect value of a:8916100448229

inspect value of b:#

inspect value of c:#


相关用法


注:本文由纯净天空筛选整理自mayank5326大神的英文原创作品 Ruby | BigDecimal class inspect value。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。