What is the “extend self” doing? I thought at the top a module, ‘self’
was pretty much an empty context at that point… but I guess not,
since the writer obviously thinks self contains something worth
extending…?
What is the “extend self” doing? I thought at the top a module,
‘self’
was pretty much an empty context at that point… but I guess not,
since the writer obviously thinks self contains something worth
extending…?
It extends the very module object. That’s one-liner to add all the
module instance methods as module functions. That is
Alle 21:09, giovedì 4 gennaio 2007, Jeff ha scritto:
…
What is the “extend self” doing? I thought at the top a module, ‘self’
was pretty much an empty context at that point… but I guess not,
since the writer obviously thinks self contains something worth
extending…?
Jeff
In a module definition, outside methods, self refers to the module
itself, as
it happens inside the definition of a class. For instance, the following
code
module MyModule
puts self.class
puts self.name
end
What is the “extend self” doing? I thought at the top a module,
‘self’
was pretty much an empty context at that point… but I guess not,
since the writer obviously thinks self contains something worth
extending…?
Well, like any method call in Ruby, there is a receiver here. In
this case, it’s just the implicit self, so the call is actually
self.extend(self). Self, in that context, is the module
Dependancies. Dependancies.extend(Dependancies) means, duplicate all
the instance methods as module methods.
Google seems to have lost my previous 2 attempts to reply to this
thread, here we go again…
Awesome, thanks for the help everyone! For some reason when I saw the
“extend” at the top of the class, instead of at the bottom, I didn’t
see how it know about the instance methods that follow. Doh!
Not quite the same however. Using module_function actually creates a
new method that is a copy of the first. extend_self OTOH adds the
module to it’s own metaclass’ inheritance chain, so in that case they
are the same method.
What is the “extend self” doing? I thought at the top a module, ‘self’
was pretty much an empty context at that point… but I guess not,
since the writer obviously thinks self contains something worth
extending…?
self is never empty; it’s always something. At the top of a module
definition, it’s the module object itself:
module M
p self
end
will print:
M
So what extend self does is it extends the module object by making the
instance methods in the module available to it:
module M
def greet
puts “hi”
end
extend self
end
M.greet # => hi
Now the object M has access to the instance methods defined in M –
which it also happens to be
Not quite the same however. Using module_function actually creates a
new method that is a copy of the first. extend_self OTOH adds the
module to it’s own metaclass’ inheritance chain, so in that case they
are the same method.
Right, I just meant them to be conceptually similar to add some
redundancy to the explanation. But it wasn’t exact.
So what extend self does is it extends the module object by making the
instance methods in the module available to it:
(and to all the others who said similar things)
Thanks everyone! For some reason I thought that order was important,
and having it appear before defining the instance methods would be
futile. As soon as I started reading all the replies I realized I was
being silly.
Thanks again.
Jeff
This forum is not affiliated to the Ruby language, Ruby on Rails framework, nor any Ruby applications discussed here.