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
相关用法
- Ruby Hash value?用法及代码示例
- Ruby Hash reject!用法及代码示例
- Ruby Hash length()用法及代码示例
- Ruby Hash reject用法及代码示例
- Ruby Hash to_h用法及代码示例
- Ruby Hash replace()用法及代码示例
- Ruby Hash select()用法及代码示例
- Ruby Hash to_proc用法及代码示例
- Ruby Hash size()用法及代码示例
- Ruby Hash to_s用法及代码示例
- Ruby Hash store()用法及代码示例
注:本文由纯净天空筛选整理自Kirti_Mangal大神的英文原创作品 Ruby | String hash method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。