Am I the only person with their jaw on the ground?
When I discovered this, what surprised me was not so much that you
could do this, but that can do this even_though you can’t give them
singleton methods (or access their singleton classes).
I just assumed the reason was because the singleton classes are stored
in some structure that immediate values don’t have, but that instance
variables are stored separately in some other way. (I never looked at
the interpreter source to verify this, though.)
So the question in my mind: Is there a reason we couldn’t do that
with ints, too?
class Object
def foo
“foo”
end
class <<self
def bar
“bar”
end
end
end
No, I meant giving the Fixnums themselves singleton methods, like this:
irb(main):001:0> a = ‘hello’
=> “hello”
irb(main):002:0> def a.hi
irb(main):003:1> ‘hi’
irb(main):004:1> end
=> nil
irb(main):005:0> a.hi
=> “hi”
irb(main):006:0> b = 5
=> 5
irb(main):007:0> def b.howdy
irb(main):008:1> ‘howdy’
irb(main):009:1> end
TypeError: can’t define singleton method “howdy” for Fixnum
from (irb):7
irb(main):010:0> Why not??
So I can do it for a string, but not a fixnum (or any other immediate
object).
That’s what surprised me. You can have instance variables for 5, but
not singleton methods for 5. (Of course you can have methods for 5,
but if 5 responds to it, then 6 does, too.)
"Fixnums, Symbols, true, nil, and false are implemented as immediate
values. With immediate values, variables hold the objects themselves,
rather than references to them.
Singleton methods cannot be defined for such objects. Two Fixnums of
the same value always represent the same object instance, so (for
example) instance variables for the Fixnum with the value “one” are
shared between all the “ones” is the system. This makes it impossible
to define a singleton method for just one of these."
Two Fixnums of
the same value always represent the same object instance, so (for
example) instance variables for the Fixnum with the value “one” are
shared between all the “ones” is the system.
Makes sense so far. Then we get this:
This makes it impossible
to define a singleton method for just one of these."
What!? The implementation makes it impossible, not the fact that
every 1 in the system refers to the same object. The constant
“Object” refers to the same object (the Object class) every time I
write it; this certainly doesn’t prevent one from writing singleton
methods for it.
I’m not sure what the original author of that was trying to say, but I
think the real answer is just that, for whatever implementation
reasons (most likely for the sake of optimization), immediate objects
can’t have singleton methods.
Again, my guess is that the choice was make to store singleton methods
(or the pointer to the singleton class) in some “ruby object” struct
that immediate values don’t have. But what I find surprising (going
all the way back to the beginning is that, given this, we can still
define instance variables. The reason for this must be that instance
variables are stored elsewhere (not in this “ruby object” struct, but
in some other data store). But this seems an odd choice. I would
have thought that both the klass pointer (as I think they call it) and
the instance variables are stored in that struct. Maybe GC had
something to do with this design… I can’t say more without looking
at the source.
(Isn’t this usually where Guy steps in with an email consisting of 4
words and the exact lines of the interpreter code?
I’m not sure what the original author of that was trying to say, but I
think the real answer is just that, for whatever implementation
reasons (most likely for the sake of optimization), immediate objects
can’t have singleton methods.
Without thinking too hard about it and without looking at the
source code, I would guess that it is not supported to avoid
the overhead of a method search for individual objects. You
still have to do the method search for the class and as such
you can extend the class but the search for a per/object
method is avoided.
It’s one of the many things that makes Ruby code very fun to write
Actually it is a bit different. Monkey patching is just adding
methods to classes. Fixnum and String in your examples.
Instance variables on Fixnums (or Symbols or Nil) is different.
It is a good example of uniformity in Ruby but I’m hard pressed
to think of a nice use case for the feature.
Actually it is a bit different. Monkey patching is just adding
methods to classes. Fixnum and String in your examples.
Instance variables on Fixnums (or Symbols or Nil) is different.
It is a good example of uniformity in Ruby but I’m hard pressed
to think of a nice use case for the feature.
Gary W.
You can use it to cache the result of method calls.
class Fixnum
def factorial @factorial ||= self * (self-1).factorial
end
end
0.instance_variable_set(‘@factorial’,1)
This forum is not affiliated to the Ruby language, Ruby on Rails framework, nor any Ruby applications discussed here.