重写简单的 ruby​​ 函数以使用块

发布于 2024-08-21 06:09:25 字数 350 浏览 3 评论 0原文

我不知道正确的术语。我试图用谷歌搜索它,但找不到任何因此原因的东西。

我正在编写一个 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

〆一缕阳光ご 2024-08-28 06:09:26

您可以定义 Dwg 的初始化程序来获取一个块,然后使用 instance_eval 生成该块,如下所示:

class MyClass
  def initialize(name, &block)
    @name = name
    instance_eval &block
  end

  def show_name
    puts 'My name is ' + @name
  end
end

MyClass.new('mud') do
  show_name
end

# >> My name is mud

有关详细信息,请参阅“用于接口简化的块” Gregory Brown 最近获得知识共享许可的第 2 章中的部分Ruby 最佳实践一书。 (它的作者和出版商正在逐渐抄送整个作品,但你当然仍然可以购买一份副本来支持该作品。iPhone 版本特别便宜。)

You can define Dwg's initializer to take a block, and then yield to that block with instance_eval, like so:

class MyClass
  def initialize(name, &block)
    @name = name
    instance_eval &block
  end

  def show_name
    puts 'My name is ' + @name
  end
end

MyClass.new('mud') do
  show_name
end

# >> My name is mud

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.)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文