讀<<programming ruby>> 7.6節 flip-flop 理解

來源:互聯網
上載者:User

標籤:

書中源碼是這樣的

File.foreach(‘1.txt‘) do |x|  if(($. == 1) || x =~ /eig/) .. (($. == 3) || x =~ /nin/) then    print x  endend

其中 1.txt內容如下

firstsecondthirdfourthfifthsixthseventheigthninthtenth

按道理 讀取第一行的first,$.應該是1 ($.是一個全域變數,表示行號)但是rubymine調式發現不是1,這個我暫時沒找到原因。所以經別人提示。我改成這樣

f = File.new(‘1.txt‘)f.each do |line|  if ((f.lineno == 1) || line.chomp =~ /eig/)..((f.lineno== 3) || line.chomp =~ /nin/) then    print f.lineno    print line  endend

  

這樣 f.lineno表示每次讀取的行號 運行測試結果如下

 

 

書上只提到2點,

1 exp1..expr2這樣的rang, 在exp1變為真之前,它的值為假,在exp2變為真正之前,rang被求解為真
2 這段程式碼片段。就是列印1到3行及位於/eig/和/nin/之間

 

有點晦澀難懂,然後群裡有人提示,看這個文章: http://nithinbekal.com/posts/ruby-flip-flop/

The flip flop operator is a range (..) operator used between two conditions in a conditional statement. It looks like this:

(1..20).each do |x|  puts x if (x == 5) .. (x == 10)end

 The condition evaluates to false every time it is evaluated until the first part evaluates to true. Then it evaluates to true until the second part evaluates to true. In the above example, the flip-flop is turned on when x == 5 and stays on until x == 10, so the numbers from 5 to 10 are printed.

 

(x == 5) .. (x == 10) 這個東西叫做flip flop 

 


1 藍色英文就是說,當第一部分也就是(x==5)為真的時候。整個if判斷為真,但是什麼時候為假呢。直到第二部分為真也就是(x==10)時候,  也就是前面提到的 exp1..expr2這樣的rang, 在exp1變為真之前,它的值為假,在exp2變為真正之前,rang被求解為真2  紅字英文意思就是 x==5時,這個運算式開始執行。什麼時候停止呢,知道x==10,所以列印5到10之間

  

 

所以理解 

((f.lineno == 1) || line.chomp =~ /eig/)..((f.lineno== 3) || line.chomp =~ /nin/)

可以這麼想,當f.lineno 值為1的時候 這個運算式 ((f.lineno == 1) || line.chomp =~ /eig/) 為真,整個if 為真,

然後列印 1first,什麼時候列印終止?,當flineno=3或者line.chomp(chomp去掉行尾的/r/n)的值匹配/nin/,他們兩個滿足其中一個的時候 就不列印了。

 

可以像下面代碼這樣理解

f = File.new(‘1.txt‘)f.each do |line|  if ((1..3).include?f.lineno) or (line =~ /eig/ or line =~ /nin/) then    print f.lineno    print line  endend

  

讀<<programming ruby>> 7.6節 flip-flop 理解

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.