each()是Ruby中的一个内置方法,它以现有顺序返回结构的每个值。如果没有传递块,它将返回一个枚举数。
用法: struct_name.each{|x| block }
参数:该函数接受单个参数块,这是它的迭代方式。
返回值:按其各自的顺序返回每个struct成员。
例子1:
# Ruby program for each method in struct
# Include struct
Company = Struct.new(:name, :address, :zip)
#initialise struct
ele = Company.new("Geeksforgeeks", "India", 581)
# Prints the value of each member
ele.each {|x| puts(x) }
输出:
Geeksforgeeks India 581
例子2:
# Ruby program for each method in struct
# Include struct
Employee = Struct.new(:name, :address, :zip)
#initialise struct
ele = Employee.new("Twinkle Bajaj", "India", 12345)
# Prints the value of each member
ele.each {|x| puts(x) }
输出:
Twinkle Bajaj India 12345
相关用法
- Ruby Struct eql?()用法及代码示例
- Ruby Struct filter()用法及代码示例
- Ruby Struct members()用法及代码示例
- Ruby Struct values_at()用法及代码示例
- Ruby Struct to_a()用法及代码示例
- Ruby Struct length()用法及代码示例
- Ruby Struct size()用法及代码示例
- Ruby Struct inspect()用法及代码示例
- Ruby Struct values()用法及代码示例
- Ruby Struct to_s()用法及代码示例
- Ruby Set add?用法及代码示例
注:本文由纯净天空筛选整理自gopaldave大神的英文原创作品 Ruby | Struct each() function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。