Ruby BigDecimal inspect 函数

Ruby BigDecimal inspect 函数

BigDecimal#inspect() : inspect()是BigDecimal类的一个方法,它以一串逗号分隔的值的形式返回关于数值的调试信息。

语法。BigDecimal.expect()

参数。要查找的BigDecimal值的检查值

返回:

第一部分–地址

第二部分–作为字符串的值

最后部分–当前和最大有效位数分别。

代码#1:expect()方法的例子

# 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:expect()方法的例子

# 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 : #

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程