BigDecimal#exponent():exponent()是BigDecimal類方法,該方法返回BigDecimal值的 index 值。
用法: BigDecimal.exponent()
參數:BigDecimal值以找到 index 值
返回:BigDecimal值的 index 值
代碼#1:exponent()方法示例
# Ruby code for exponent() method
# loading BigDecimal
require 'bigdecimal'
# declaring BigDecimal
b = -BigDecimal("10")
puts "exponent example 2:#{b.exponent()}\n\n"
輸出:
exponent example 2:2
代碼2:exponent()方法示例
# Ruby code for exponent() method
# loading BigDecimal
require 'bigdecimal'
# declaring BigDecimal
b = BigDecimal('10')-(22 ** 7.1) ** 10
# declaring BigDecimal
c = BigDecimal('-3')
puts "exponent example 2:#{b.exponent()}\n\n"
puts "exponent example 3:#{c.exponent()}\n\n"
輸出:
exponent example 2:96 exponent example 3:1
相關用法
- Ruby BigDecimal div用法及代碼示例
- Ruby BigDecimal dup用法及代碼示例
- Ruby BigDecimal nan?用法及代碼示例
- Ruby BigDecimal eql?用法及代碼示例
- Ruby BigDecimal hash用法及代碼示例
- Ruby BigDecimal absolute用法及代碼示例
- Ruby BigDecimal infinite?用法及代碼示例
- Ruby BigDecimal floor用法及代碼示例
- Ruby BigDecimal nonzero?用法及代碼示例
- Ruby BigDecimal modulo用法及代碼示例
- Ruby BigDecimal power用法及代碼示例
- Ruby BigDecimal coerce用法及代碼示例
- Ruby BigDecimal inspect用法及代碼示例
- Ruby BigDecimal clone用法及代碼示例
注:本文由純淨天空篩選整理自mayank5326大神的英文原創作品 Ruby | BigDecimal class exponent value。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。