BigDecimal#eql?():eql?()是BigDecimal類方法,它檢查兩個BigDecimal值是否相等。
用法: BigDecimal.eql?()
參數:BigDecimal值進行比較
返回:true-如果tqo值相等;否則為假
代碼#1:eql?()方法的示例
# Ruby code for eql?() method
# loading BigDecimal
require 'bigdecimal'
# declaring BigDecimal
a = 42.1**13
# declaring BigDecimal
b = -BigDecimal("10")
# declaring BigDecimal
c = -(22 ** 7.1) * 10
puts "eql? example 1:#{a.eql?(b)}\n\n"
puts "eql? example 2:#{b.eql?(c)}\n\n"
輸出:
eql? example 1:false eql? example 2:false
代碼2:eql?()方法的示例
# Ruby code for eql?() 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')
puts "eql? example 1:#{a.eql?(a)}\n\n"
puts "eql? example 2:#{b.eql?(c)}\n\n"
輸出:
eql? example 1:true eql? example 2:false
相關用法
- Ruby BigDecimal dup用法及代碼示例
- Ruby BigDecimal div用法及代碼示例
- Ruby BigDecimal nan?用法及代碼示例
- Ruby BigDecimal modulo用法及代碼示例
- Ruby BigDecimal floor用法及代碼示例
- Ruby BigDecimal power用法及代碼示例
- Ruby BigDecimal frac用法及代碼示例
- Ruby BigDecimal nonzero?用法及代碼示例
- Ruby BigDecimal exponent用法及代碼示例
- Ruby BigDecimal inspect用法及代碼示例
- Ruby BigDecimal infinite?用法及代碼示例
- Ruby BigDecimal ceil用法及代碼示例
- Ruby BigDecimal absolute用法及代碼示例
- Ruby BigDecimal coerce用法及代碼示例
注:本文由純淨天空篩選整理自mayank5326大神的英文原創作品 Ruby | BigDecimal class eql? value。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。