一区二区三区在线-一区二区三区亚洲视频-一区二区三区亚洲-一区二区三区午夜-一区二区三区四区在线视频-一区二区三区四区在线免费观看

腳本之家,腳本語言編程技術及教程分享平臺!
分類導航

Python|VBS|Ruby|Lua|perl|VBA|Golang|PowerShell|Erlang|autoit|Dos|bat|

服務器之家 - 腳本之家 - Ruby - 舉例講解Ruby中迭代器Iterator的用法

舉例講解Ruby中迭代器Iterator的用法

2020-04-27 11:09pringwq Ruby

這篇文章主要介紹了舉例講解Ruby中迭代器Iterator的用法,是Ruby學習進階中的重要知識,需要的朋友可以參考下

Iterator
定義

A Ruby iterator is simple a method that can invoke a block of code.

  •         Block 一般是跟著 method 出現的, 并且 block 中的代碼不一定會執行
  •         如果 method 中有 yield, 那么它的block 中的代碼會被執行
  •         Block 可以接收參數,和返回 value
?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
def two_times
  yield
  yield
end
two_times { puts "Hello" }
# Hello
# Hello
 
def fib_up_to(max)
 i1, i2 = 1. 1
 while i1 <= max
   yield i1
   i1, i2 = i2, i1 + i2
 end
end
 
fib_up_to(1000) { |f| print f, " " }
 
# 1 1 2 3 5 8 13 21 34 55 89 144 233 377 610 987

    上面代碼中的 yield 之后的 i1 會作為 parameter 傳入到 block 中, 賦值給 block 的 argument f。
    Block 中可以有多個 arguments.

常見的 iterator
each

each is probable the simplest iterator - all it does is yield successive elements of its collection.

?
1
2
3
4
5
6
7
[1, 3, 5, 7, 9].each { |i| puts i }
 
# 1
# 3
# 5
# 7
# 9

find

A blocl may also return a value to the method. The value of the last expression evaluated in the block is passed back to the method as the value of the yield.

?
1
2
3
4
5
6
7
8
9
class Array
 def find
  each do |value|
    return value if yield(value)
  end
 end
end
 
[1,3,4,7,9].find { |v| V*V > 30 } # => 7

collect (also known as map)

Which takes each element from the collection and passes it to the block. The results returned by the block are used to construct a new array

?
1
["H", "A", "L"].collect { |x| x.succ } # => ["I", "B", "M"]

inject

The inject method lets you accumulate a value across the members of a collection.

?
1
2
3
4
5
6
7
8
[1,3,5,7].inject { |sum, element| sum + element } # => 16
 
# sum = 1, element = 3
# sum = 4, element = 5
# sum = 9, element = 7
# sum = 16
 
[1,3,5,6].inject { |product, element| product*element } # => 105

If inject is called with no parameter, it uses the first element of the collections as the initial value and starts the iteration with the second value.

上面代碼的另一種簡便寫法:

?
1
2
[1,3,5,7].inject(:+) # => 16
[1,3,5,7]/inject(:*) # => 105

Iterator 和 I/O 系統的交互

Iterators 不僅僅能夠訪問 Array 和 Hash 中的數據, 和可以和 I/O 系統交互

?
1
2
3
4
5
f = File.open("testfile")
f.each do |line|
 puts "The line is: #{line}"
end
f.close

produces:
The line is: This is line one
The line is: This is line two
The line is: This is line three

延伸 · 閱讀

精彩推薦
  • RubyRuby簡潔學習筆記(一):字符串、數字、類和對象

    Ruby簡潔學習筆記(一):字符串、數字、類和對象

    這篇文章主要介紹了Ruby簡潔學習筆記(一):字符串、數字、類和對象,本文是學習筆記第一篇,需要的朋友可以參考下 ...

    腳本之家2472020-04-20
  • Ruby簡要說明Ruby中的迭代器

    簡要說明Ruby中的迭代器

    這篇文章主要介紹了Ruby中的迭代器,迭代器的概念在動態語言的編程中十分重要,文章中介紹了Ruby中的each迭代器和collect迭代器,需要的朋友可以參考下 ...

    goldensun2772020-04-25
  • RubyCentOS中配置Ruby on Rails環境

    CentOS中配置Ruby on Rails環境

    經過一個上午的折騰,終于把ROR環境在CentOS中搞定,繞了很多彎路,把文章寫下來總結一下 ...

    可樂加糖4762020-04-12
  • RubyRuby設計模式編程中使用Builder建造者模式的實例

    Ruby設計模式編程中使用Builder建造者模式的實例

    這篇文章主要介紹了Ruby設計模式編程中使用Builder建造者模式的實例,建造者模式將一個復雜對象的構造與它的表示分離,使同樣的構建過程可以創建不同的表...

    范孝鵬2192020-05-07
  • RubyRuby環境下安裝使用bundler來管理多版本的gem

    Ruby環境下安裝使用bundler來管理多版本的gem

    這篇文章主要介紹了Ruby環境下安裝使用bundler來管理多版本的gem的方法,舉了Ruby On Rails中的應用實例來進行演示,需要的朋友可以參考下 ...

    日拱一卒4332020-05-10
  • Ruby剖析 Ruby 訪問控制

    剖析 Ruby 訪問控制

    前面,我們說 Ruby 沒有函數,只有方法.而且實際上有不止一種方法.這一節我們介紹 訪問控制 (accesscontrols). 想想當我們在最高層而不是在一個類的定義里定義...

    ruby教程網3572020-04-08
  • RubyRuby進行文件信息輸出實例代碼

    Ruby進行文件信息輸出實例代碼

    Ruby進行文件信息輸出實例代碼,數據是隨機的,所以每次的記錄都會不同。 ...

    ruby教程網2962020-04-10
  • RubyRuby迭代器的7種技巧分享

    Ruby迭代器的7種技巧分享

    這篇文章主要介紹了Ruby迭代器的7種技巧分享,Ruby中的迭代器非常人性化,本文既是講解了7個技巧也是講解了7種迭代器,需要的朋友可以參考下 ...

    腳本之家4782020-04-20
主站蜘蛛池模板: 美国艳星lisann成人作品 | 日本中年japanesebear | 幻女free性俄罗斯第一次摘花 | 99久久免费精品视频 | 亚洲国产无线码在线观看 | 女人与zzzooooxxx| 1769在线观看 | 精品国产品香蕉在线观看75 | 青草草视频在线观看 | 青草视频网站在线观看 | 范冰冰特黄xx大片 | 青草久久伊人 | 禁漫H天堂免费A漫 | 福利视频一区二区牛牛 | china精品对白普通话 | 国产资源免费观看 | 久久伊人电影 | 国产日韩一区二区三区在线播放 | 精品99在线观看 | 精品久久久久中文字幕日本 | 日本精品vide·ssex日本 | 日韩视频一区二区 | 日噜噜| 青青草色 | 国产成人久久久精品一区二区三区 | 啊好大好粗 | 国产视频在线一区 | 精品视频手机在线观看免费 | 秋霞一级成人欧美理论 | 国产精品免费_区二区三区观看 | 日本免费不卡在线一区二区三区 | 翁熄性放纵交换01 | 性xxxx中国老妇506070 | www四虎影院| 亚洲免费视频一区二区三区 | 欧美va免费精品高清在线 | 操破苍穹全文阅读 | 日韩不卡一区二区三区 | 五月一区二区久久综合天堂 | 久久九九久精品国产尤物 | eee在线播放成人免费 |