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


Ruby String hash用法及代码示例


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

用法: 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


相关用法


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