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


Ruby BigDecimal hash用法及代码示例


BigDecimal#hash():hash()是BigDecimal类方法,它返回BigDecimal值的哈希值。

用法: BigDecimal.hash()

参数:BigDecimal值以查找值的哈希部分


返回:BigDecimal值的哈希值

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

# Ruby code for hash() 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 "hash value of a:#{a.hash}\n\n"
  
# b 
puts "hash value of b:#{b.hash}\n\n"
  
# c 
puts "hash value of c:#{c.hash}\n\n"
     

输出:

hash value of a:-356173160844341091

hash value of b:-3967525242845538832

hash value of c:-3453672420229872218

代码2:hash()方法示例

# Ruby code for hash() 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 "hash value of a:#{a.hash}\n\n"
  
# b 
puts "hash value of b:#{b.hash}\n\n"
  
# c 
puts "hash value of c:#{c.hash}\n\n"

输出:

hash value of a:-3561916586715218903

hash value of b:1852347221456838115

hash value of c:1714082193134741719


相关用法


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