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}
相关用法
- Ruby Enumerator each用法及代码示例
- Ruby Enumerator each_with_index用法及代码示例
- Ruby Set add?用法及代码示例
- Ruby Complex abs用法及代码示例
- Ruby Numeric quo()用法及代码示例
- Ruby BigDecimal E()用法及代码示例
- Ruby Set merge()用法及代码示例
注:本文由纯净天空筛选整理自Kanchan_Ray大神的英文原创作品 Ruby | Enumerator each_with_object function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。