English 中文(简体)
何时使用模块,何时使用
原标题:When to use a module, and when to use a class

我目前正在通过格雷戈·布朗(Ruby Best Practices书开展工作。 早上,他谈论的是,将一些功能从相关类别中的助手方法改为模块上的某种方法,然后是模块<编码>推广自。

Hadn t 曾看到,在经过快速透视之后,在模块上,<代码>扩展自封使模块中界定的方法相互看,这是有意义的。

现在,我的问题是,你何时会这样做。

module StyleParser
  extend self

  def process(text)
    ...
  end

  def style_tag?(text)
    ...
  end
end

之后在测试中参考。

@parser = Prawn::Document::Text::StyleParser

而不是这种情况?

class StyleParser

  def self.process(text)
    ...
  end

  def self.style_tag?(text)
    ...
  end
end 

是这样,你才能把它当作一个组合? 或者还有其他原因,我看不到吗?

最佳回答

应使用一类功能,需要即时或需要跟踪国家。 模块可以用作将功能分成多个班的方法,也可以用来提供不需要即时的一次性特征或保持状态。 后者也可使用一种分类方法。

有鉴于此,我认为,区别在于你是否真正需要一个班子。 如果有一个需要单一州功能的现有班级,则班级方法似乎更为合适。 如果你重新制定的方法仅由单一州的方法组成,那么作为模块加以实施并直接通过模块加以利用就更有意义。

问题回答

在这种特殊情况下,我可能既不使用一类或单元。

某类物品是工厂(单位)。 如果你不想造成这种阶级的多重情况,就没有必要存在。

模块是多个物体共用的方法箱。 如果你不将模块分成多个物体,就没有必要存在。

在这种情况下,它只想提一个目标。 因此使用:

def (StyleParser = Object.new).process(text)
  ...
end

def StyleParser.style_tag?(text)
  ...
end

或者说:

class << (StyleParser = Object.new)
  def process(text)
    ...
  end

  def style_tag?(text)
    ...
  end
end

但是,正如“Azeem”已经写成的:为了作出适当的决定,你需要更多的背景。 我不太熟悉普拉恩的内部,不知道为什么格雷人作出这一特别决定。

如果你想做一些事情的话,就使用一类。 你们的其余问题需要更多的背景来理解。





相关问题
Ruby parser in Java

The project I m doing is written in Java and parsers source code files. (Java src up to now). Now I d like to enable parsing Ruby code as well. Therefore I am looking for a parser in Java that parses ...

rails collection_select vs. select

collection_select and select Rails helpers: Which one should I use? I can t see a difference in both ways. Both helpers take a collection and generates options tags inside a select tag. Is there a ...

RubyCAS-Client question: Rails

I ve installed RubyCAS-Client version 2.1.0 as a plugin within a rails app. It s working, but I d like to remove the ?ticket= in the url. Is this possible?

Ordering a hash to xml: Rails

I m building an xml document from a hash. The xml attributes need to be in order. How can this be accomplished? hash.to_xml

multiple ruby extension modules under one directory

Can sources for discrete ruby extension modules live in the same directory, controlled by the same extconf.rb script? Background: I ve a project with two extension modules, foo.so and bar.so which ...

Text Editor for Ruby-on-Rails

guys which text editor is good for Rubyonrails? i m using Windows and i was using E-Texteditor but its not free n its expired now can anyone plese tell me any free texteditor? n which one is best an ...

热门标签