Ruby 字符串 hash方法

Ruby 字符串 hash方法

hash 是Ruby中的一个字符串类方法,用于根据字符串的长度、内容和编码返回一个哈希值。

语法: str.hash

参数: 这里,str是给定的字符串。

返回: 基于字符串的长度、内容和编码的哈希值。

例子 1 :

# Ruby program to demonstrate 
# the hash method 
       
# Taking a string and 
# using the method
puts "Ruby".hash                
puts "String".hash

输出

3142682481284465636
-3118341609802567384

例2 :

# Ruby program to demonstrate 
# the hash method 
       
# Taking a string and 
# using the method
puts "Sample".hash                
puts "Program".hash

输出

1285954436548758293
-6969951348417810

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程