4. 용기, 블록, 교체기

1900 단어
반복 상용 방법each [1, 2, 3, 4, 5].each {|i| puts i} find [1,2,3,4,5,6].find {|i| i*i > 30} # 6 collect방법과 마찬가지로 블록을 통해 새로운 수조map를 되돌려주는 중요한 방법은 ["H" , "A" , "L" ].collect {|x| x.succ } # => ["I", "B", "M"]f=File입니다.open("testfile") f.each.with_index do |line, index| puts "Line #{index} is: #{line}"end f.close
우리는 그룹이나 hash에서 with_index 방법을 사용하여 성공적인 매거 대상을 변환할 수 있습니다.
a = [ 1, 3, "cat" ]
h = { dog: "canine" , fox: "vulpine" }
# Create Enumerators
enum_a = a.to_enum
enum_h = h.to_enum
enum_a.next # => 1
enum_h.next # => [:dog, "canine"]
enum_a.next # => 3
enum_h.next # => [:fox, "vulpine"]

메서드to_enum를 사용하여 열거 객체 제어
short_enum = [1, 2, 3].to_enum
long_enum = ('a' ..'z' ).to_enum
loop do
puts "#{short_enum.next} - #{long_enum.next}"
end
produces:
1 - a
2 - b
3 - c

배열이나 문자열에 대한 다른 자주 사용되는 교체 방법:
result = []
[ 'a' , 'b' , 'c' ].each_with_index {|item, index| result << [item, index] }
result # => [["a", 0], ["b", 1], ["c", 2]]

result = []
"cat".each_char.each_with_index {|item, index| result << [item, index] }
result # => [["c", 0], ["a", 1], ["t", 2]]

result = []
"cat".each_char.with_index {|item, index| result << [item, index] }
result # => [["c", 0], ["a", 1], ["t", 2]]

enum = "cat".enum_for(:each_char)
enum.to_a # => ["c", "a", "t"]

enum_in_threes = (1..10).enum_for(:each_slice, 3)
enum_in_threes.to_a # => [[1, 2, 3], [4, 5, 6], [7, 8, 9], [10]]

좋은 웹페이지 즐겨찾기