Ruby特色之Ruby關鍵字yield

來源:互聯網
上載者:User

Ruby特色之Ruby關鍵字yield


Ruby關鍵字yield在實際編程中是比較常用的一個關鍵字。剛剛學習Ruby語言的編程人員們都需要首先掌握這一類的基礎關鍵字的用法。

Ruby語言中有些基礎關鍵字是初學者們必須要掌握的基礎知識。在這裡我們就來一起瞭解一下具有特色的Ruby關鍵字yield的相關知識。

  • Ruby字串處理函數總結列表分享
  • Ruby裝飾模式應用技巧分享
  • Ruby watir環境搭建錯誤解決方案
  • 幾款高效能Ruby On Rails開發外掛程式推薦
  • 透過Ruby source瞭解Ruby真理



輸入

  1. def call_block   
  2. puts "Start of method"   
  3. yield   
  4. yield   
  5. puts "End of method"   
  6. end   
  7. call_block { puts "In the block" }  

輸出: 

Start of method 

In the block 

In the block 

End of method

對這個yield的用法,網上說法不一,有的說是預留位置,有的說是"讓路",有的說是宏 

http://www.javaeye.com/topic/31752 

http://axgle.javaeye.com/blog/31018 

在我這個.net開發人員看來,更願意把他看成是個方法委託,用.net寫,可以寫成這樣 

輸入

 
  1. delegate outhandler();   
  2. void call_block(outhandler yield)   
  3. {   
  4. Console.WriteLIne("Start of method");   
  5. yield();   
  6. yield();   
  7. Console.WriteLIne("End of method");   
  8. }   
  9. void test(){Console.WriteLine
    ("In the block"); }   
  10. //調用   
  11. call_block(test);  

哈哈,上面的代碼似乎要比ruby的冗餘很多,但是也要嚴格很多,不知道我這樣的分析對不對,不過還是不能完全代替,如果函數中定義一個變數:

 
  1. def call_block   
  2. puts "Start of method"   
  3. @count=1   
  4. yield   
  5. yield   
  6. puts "End of method"   
  7. end   
  8. call_block { puts @count=@count+1 }  

輸出: 

Start of method 





End of method

也就是說這個代理要獲得對上下文範圍的訪問權,這在.net裡恐怕實現不了,這就有點像一個宏了,甚至是代碼織入,不過宏好像不能搞方法傳遞吧。因 此,ruby的yield還是很有特色,看看他使用的一些例子: 

輸入

 
  1. [ 'cat', 'dog', 'horse' ].each
     {|name| print name, " " }   
  2. 5.times { print "*" }   
  3. 3.upto(6) {|i| print i }   
  4. ('a'..'e').each {|char| print char }  

輸出: 

cat dog horse *****3456abcde

嘿嘿,這些實現.net委託都可以搞定,給個函數指標...

轉自: http://developer.51cto.com/art/200912/170864.htm

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.