Module extend self

栏目: IT技术 · 发布时间: 4年前

内容简介:Buried in this blog post, I found an interesting construction. See the ExampleI had never seen theUsing

module-extends-self

Module extend self

Buried in this blog post, I found an interesting construction. See the Example module OrderRepository .

I had never seen the extend self construct before, so I did a little playing around in Pry.

Using extend self in a module is similar to calling class << self ... end with all the method definitions inside it. It’s yet another way to get access to a module’s eigenclass.

This goes along with using def self.my_method and using module_function to also making piecemeal module methods, the main distinction being that using def self.my_method creates a method that the only receiver will be the module itself, not any classes that include the module.

module MyMod
  extend self

  def hi_there
    "hi there from inside MyMod"
  end

  private

  def go_away
    "go away now inside MyMod"
  end
end

MyMod.hi_there #=> "hi there from inside MyMod"
MyMod.go_away

class MyClass
  include MyMod

  def call_hi_there
    hi_there
  end
end

MyClass.hi_there
MyClass.new.hi_there #=> "hi there from inside MyMod"
MyClass.call_hi_there
MyClass.new.call_hi_there #=> "hi there from inside MyMod"
MyClass.go_away
MyClass.new.go_away

module YourMod
  class << self
    def hi_there
      "hi there from inside YourMod"
    end

    private

    def go_away
      "go away now inside YourMod"
    end
  end

  def que?
    "que? inside YourMod"
  end
end

YourMod.hi_there #=> "hi there from inside YourMod"
YourMod.go_away
YourMod.que?

module TheirMod
  def hi_there
    "hi there from inside TheirMod"
  end

  method_function :hi_there
end

TheirMod.hi_there #=> "hi there from inside TheirMod"

module ItsMod
  def self.hi_there
    "hi there from inside ItsMod"
  end
end

ItsMod.hi_there #=> "hi there from inside ItsMod"


class YourClass
  include YourMod

  def call_hi_there
    hi_there
  end
end

YourClass.new.hi_there #=> NoMethodError: undefined method `hi_there' for #<YourClass:0x007f50d0307cd0>
YourClass.new.call_hi_there #=> NameError: undefined local variable or method `hi_there' for #<YourClass:0x007f50d021aae8>

class TheirClass
  include TheirMod

  def call_hi_there
    hi_there
  end
end

TheirClass.new.hi_there #=> NoMethodError: private method `hi_there' called for #<TheirClass:0x007f50d0978880>
TheirClass.new.call_hi_there #=> "hi there from inside TheirMod"

class ItsClass
  include ItsMod

  def call_hi_there
    hi_there # not available!
  end

  def really_call_hi_there
    ItsMod.hi_there
  end
end

ItsClass.new.hi_there #=> NoMethodError: undefined method `hi_there' for #<ItsClass:0x007f50d0859aa8>
ItsClass.new.call_hi_there #=> NameError: undefined local variable or method `hi_there' for #<ItsClass:0x007f50d0817450>
ItsClass.new.really_call_hi_there #=> "hi there from inside ItsMod"

以上所述就是小编给大家介绍的《Module extend self》,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对 码农网 的支持!

查看所有标签

猜你喜欢:

本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们

旷世之战――IBM深蓝夺冠之路

旷世之战――IBM深蓝夺冠之路

纽伯 / 邵谦谦 / 清华大学出版社 / 2004-5 / 35.0

本书作者Monty Neworn是国际计算机象棋协公的主席,作者是用生动活泼的笔触描写了深蓝与卡斯帕罗夫之战这一引起全世界关注的历史事件的前前后后。由于作者的特殊身份和多年来对计算机象棋的关心,使他掌握了许多局外人不能得到的资料,记叙了很多鲜为人知的故事。全书行文流畅、文笔优美,对于棋局的描述更是跌宕起伏、险象环生,让读者好像又一次亲身经历了那场流动人心的战争。 本书作为一本科普读物......一起来看看 《旷世之战――IBM深蓝夺冠之路》 这本书的介绍吧!

JS 压缩/解压工具
JS 压缩/解压工具

在线压缩/解压 JS 代码

CSS 压缩/解压工具
CSS 压缩/解压工具

在线压缩/解压 CSS 代码

UNIX 时间戳转换
UNIX 时间戳转换

UNIX 时间戳转换