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


Ruby Enumerator each_with_object用法及代碼示例


Ruby中的each_with_object函數用於迭代給定對象的每個元素。

用法: A.each_with_object({})
Here, A is the initialised object.

參數:該函數不接受任何參數。


返回值:新的一組值。

示例1:

# Calling the .each_with_object function on an array object 
[:gfg, :geeks, :geek].each_with_object({}) do |item, hash| 
  
# Converting the array elements into its uppercase 
  hash[item] = item.to_s.upcase 
end

輸出:

{:gfg=>"GFG", :geeks=>"GEEKS", :geek=>"GEEK"}

示例2:

# Calling the .each_with_object function on a hash 
{ foo: 2, bar: 4, jazz: 6 }.each_with_object({}) do 
|(key, value), hash| 
  
# Getting the square of the hash's value 
  hash[key] = value**2
end

輸出:

{:foo=>4, :bar=>16, :jazz=>36}


相關用法


注:本文由純淨天空篩選整理自Kanchan_Ray大神的英文原創作品 Ruby | Enumerator each_with_object function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。