红宝石 | BigDecimal < 值
BigDecimal#<() : <()是一个 BigDecimal 类方法,它比较两个 BigDecimal 值。
Syntax: BigDecimal.<()
Parameter: BigDecimal values
Return: True - if a < b, otherwise false
代码 #1:<() 方法的示例
# Ruby code for BigDecimal.<() method
# loading BigDecimal
require 'bigdecimal'
# declaring BigDecimal
a = 42.1**13
# declaring BigDecimal
b = -BigDecimal("10")
# declaring BigDecimal
c = -(22 ** 7.1) * 10
# false - as a>b
puts "BigDecimal a < b : #{ac
puts "BigDecimal b < c : #{bc
puts "BigDecimal a < c : #{c
输出 :
BigDecimal a < b : false
BigDecimal b < c : false
BigDecimal a < c : true
代码 #2:<() 方法的示例
# Ruby code for BigDecimal.<() 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')
# false as a>b
puts "BigDecimal a < b : #{a
输出 :
BigDecimal a < b : false
BigDecimal b < c : true