Ruby特色之Ruby关键字yield


Ruby特色之Ruby关键字yield


Ruby关键字yield在实际编程中是比较常用的一个关键字。刚刚学习Ruby语言的编程人员们都需要首先掌握这一类的基础关键字的用法。

Ruby语言中有些基础关键字是初学者们必须要掌握的基础知识。在这里我们就来一起了解一下具有特色的Ruby关键字yield的相关知识。


输入

  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

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值