重写简单的 ruby 函数以使用块
我不知道正确的术语。我试图用谷歌搜索它,但找不到任何因此原因的东西。
我正在编写一个 Ruby 库,我想重写这些函数,以便它们按如下方式工作,因为我更喜欢它的可读性(在块内?)
我有一个函数可以执行此操作,
@dwg = Dwg.new("test.dwg")
@dwg.line([0,0,0],[1,1,0])
@dwg.save
我想重写它,以便它像这样工作
Dwg.new("test.dwg") do
line([0,0,0],[1,1,0])
save
end
可以吗概述一下我的处理方式?
I do not know the correct terminology. I tried to google it and could not find anything for that reason.
I am writing a Ruby library, and I want to rewrite the functions so they work as below as I prefer it for readability (inside a block?)
I have a function that does this
@dwg = Dwg.new("test.dwg")
@dwg.line([0,0,0],[1,1,0])
@dwg.save
I want to rewrite it so it works like this
Dwg.new("test.dwg") do
line([0,0,0],[1,1,0])
save
end
Can you outline the way I go about this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以定义
Dwg
的初始化程序来获取一个块,然后使用instance_eval
生成该块,如下所示:有关详细信息,请参阅“用于接口简化的块” Gregory Brown 最近获得知识共享许可的第 2 章中的部分Ruby 最佳实践一书。 (它的作者和出版商正在逐渐抄送整个作品,但你当然仍然可以购买一份副本来支持该作品。iPhone 版本特别便宜。)
You can define
Dwg
's initializer to take a block, and then yield to that block withinstance_eval
, like so:For more information, see the "Blocks for Interface Simplification" section in the recently Creative-Commons-licensed Chapter 2 of Gregory Brown's excellent Ruby Best Practices book. (Its author and publisher are gradually CCing the entire thing, but you can of course still buy a copy to support the work. The iPhone edition is particularly affordable.)