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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。