国产片侵犯亲女视频播放_亚洲精品二区_在线免费国产视频_欧美精品一区二区三区在线_少妇久久久_在线观看av不卡

腳本之家,腳本語言編程技術(shù)及教程分享平臺!
分類導(dǎo)航

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

服務(wù)器之家 - 腳本之家 - 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 出現(xiàn)的, 并且 block 中的代碼不一定會執(zhí)行
  •         如果 method 中有 yield, 那么它的block 中的代碼會被執(zhí)行
  •         Block 可以接收參數(shù),和返回 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 系統(tǒng)的交互

Iterators 不僅僅能夠訪問 Array 和 Hash 中的數(shù)據(jù), 和可以和 I/O 系統(tǒng)交互

?
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簡潔學習筆記(一):字符串、數(shù)字、類和對象

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

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

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

    簡要說明Ruby中的迭代器

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

    goldensun2772020-04-25
  • RubyCentOS中配置Ruby on Rails環(huán)境

    CentOS中配置Ruby on Rails環(huán)境

    經(jīng)過一個上午的折騰,終于把ROR環(huán)境在CentOS中搞定,繞了很多彎路,把文章寫下來總結(jié)一下 ...

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

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

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

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

    Ruby環(huán)境下安裝使用bundler來管理多版本的gem

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

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

    剖析 Ruby 訪問控制

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

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

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

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

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

    Ruby迭代器的7種技巧分享

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

    腳本之家4782020-04-20
主站蜘蛛池模板: 亚洲一区成人在线观看 | 久艹精品 | 精品综合久久久 | 国产中文字幕一区 | 成人免费看片 | 久久人 | 国产精品一区二区三区免费 | 99久久久国产精品 | 日韩一级免费观看 | 九九久久精品 | 91精品国产综合久久久久久漫画 | 午夜视频在线免费观看 | 日韩影片在线观看 | 国产中文在线 | 国产精品日韩高清伦字幕搜索 | 91中文字幕在线观看 | 日日爱视频 | 国产中文字幕在线看 | 欧美成人激情视频 | 欧美日韩一区二区三区在线观看 | 欧美一区二区三区在线观看 | 日本不卡一区二区三区在线观看 | 国产日产欧产美韩av | 日韩成人免费 | 日韩国产 | 久久久久国产精品免费免费搜索 | 日韩中文字幕一区二区 | 欧美二三区 | 国产精品美女久久久久久免费 | 亚洲免费视频在线 | 寡妇激情毛片免费视频 | 欧美激情视频一区二区三区在线播放 | 日韩成人在线免费视频 | 日韩在线| 欧美日韩久久精品 | hsck成人网| 久久91久久久久麻豆精品 | 免费成人高清在线视频 | 亚洲精品日本 | 欧美电影网站 | 久久国产经典视频 |