當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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