BigDecimal#hash() : hash() es un método de clase BigDecimal que devuelve el valor hash para el valor BigDecimal.
Sintaxis: BigDecimal.hash()
Parámetro: valores BigDecimal para encontrar la parte hash del valor
Retorno: valor hash para el valor BigDecimal
Código #1: Ejemplo para el método 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"
Producción :
hash value of a : -356173160844341091 hash value of b : -3967525242845538832 hash value of c : -3453672420229872218
Código #2: Ejemplo para el método 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"
Producción :
hash value of a : -3561916586715218903 hash value of b : 1852347221456838115 hash value of c : 1714082193134741719
Publicación traducida automáticamente
Artículo escrito por mayank5326 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA