ruby-on-rails – 为什么我们需要ClassMethods和InstanceMethods?

前端之家收集整理的这篇文章主要介绍了ruby-on-rails – 为什么我们需要ClassMethods和InstanceMethods?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我读了 API for ActiveSupport :: Concern.有ClassMethods和InstanceMethods,我们可以将类方法放在ClassMethods中.

但是M的主机可以使用M中定义的方法,不行吗?为什么我不能写:

module M
  def self.x
  end

  def y
  end
end

而不是:

module M
  module ClassMethods
    def x
    end
  end
  module InstanceMethods
    def y
    end
  end
end

解决方法

您可能对 Yehuda’s take on this pattern感兴趣.我认为其中一些原因是历史性的,因为除非您手动执行Ruby将通过包含和扩展自动执行,否则它们不是真正需要的.
原文链接:https://www.f2er.com/ruby/272919.html

猜你在找的Ruby相关文章