Ruby语言中有些基础关键字是初学者们必须要掌握的基础知识。在这里我们就来一起了解一下具有特色的Ruby关键字yield的相关知识。#t#
输入
输出:
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写,可以写成这样
输入
- delegate outhandler();
- void call_block(outhandler yield)
- {
- Console.WriteLIne("Start of method");
- yield();
- yield();
- Console.WriteLIne("End of method");
- }
- void test(){Console.WriteLine
("In the block"); }- //调用
- call_block(test);
哈哈,上面的代码似乎要比ruby的冗余很多,但是也要严格很多,不知道我这样的分析对不对,不过还是不能完全代替,如果函数中定义一个变量:
- def call_block
- puts "Start of method"
- @count=1
- yield
- yield
- puts "End of method"
- end
- call_block { puts @count=@count+1 }
输出:
Start of method
2
3
End of method
也就是说这个代理要获得对上下文作用域的访问权,这在.net里恐怕实现不了,这就有点像一个宏了,甚至是代码织入,不过宏好像不能搞方法传递吧。因 此,ruby的yield还是很有特色,看看他使用的一些例子:
输入
- [ 'cat', 'dog', 'horse' ].each
{|name| print name, " " }- 5.times { print "*" }
- 3.upto(6) {|i| print i }
- ('a'..'e').each {|char| print char }
输出:
cat dog horse *****3456abcde
嘿嘿,这些实现.net委托都可以搞定,给个函数指针...
新闻名称:Ruby特色之Ruby关键字yield
标题路径:http://www.csdahua.cn/qtweb/news18/337068.html
网站建设、网络推广公司-快上网,是专注品牌与效果的网站制作,网络营销seo公司;服务项目有等
声明:本网站发布的内容(图片、视频和文字)以用户投稿、用户转载内容为主,如果涉及侵权请尽快告知,我们将会在第一时间删除。文章观点不代表本网站立场,如需处理请联系客服。电话:028-86922220;邮箱:631063699@qq.com。内容未经允许不得转载,或转载时需注明来源: 快上网