Tagged Questions
In Ruby, an Eigenclass, also called a Singleton Class, is where methods defined on a specific object are actually stored. In the inheritance chain, it sits between an object and its class.
42
votes
1answer
4k views
class << self idiom in Ruby
I suppose my question is exactly what the subject depicts, what does:
class << self
do in Ruby?
29
votes
3answers
2k views
Why isn't the eigenclass equivalent to self.class, when it looks so similar?
I've missed the memo somewhere, and I hope you'll explain this to me.
Why is the eigenclass of an object different from self.class?
class Foo
def initialize(symbol)
eigenclass = class << ...
10
votes
3answers
216 views
Is it possible to get all the eigenclasses in Ruby?
Getting a list of all modules is easy in Ruby:
ObjectSpace.each_object(Module).to_a
However, is it possible to get a list of all eigenclasses (also known as singleton classes or metaclasses)? Or ...
6
votes
2answers
219 views
Why is it important to learn about metaprogramming and eigenclasses in Ruby?
I am currently experimenting with Ruby and Rails, and I've hit a few sections in tutorials and books about metaprogramming. Many mention that it is an essential component of Ruby but they don't ...
6
votes
2answers
999 views
Ruby Class Methods vs. Methods in Eigenclasses
Are class methods and methods in the eigenclass (or metaclass) of that class just two ways to define one thing?
Otherwise, what are the differences?
class X
# class method
def self.a
"a"
...
4
votes
4answers
145 views
Ruby class question [closed]
Possible Duplicate:
class << self idiom in Ruby
I have a quick Ruby question. I come from a Java/c background, so I understand in Ruby "self" when referenced inside a instance method ...
2
votes
4answers
208 views
Anonymous classes in Ruby
I have two questions:
Does method f_1 belong to the metaclass anonymous class?
Does method f_2 belong to the anonymous class?
related to the following code:
car = "car"
class << car
def ...
2
votes
3answers
481 views
Difference between 'self.method_name' and 'class << self' in Ruby
I was trying to limit the instantiation of a class to just a single one(without using singleton) but i couldn't. I tried with class variables (@@) but without luck.
I googled it and came across this:
...
1
vote
2answers
181 views
Passing local variables to be eval'd inside an eigenclass in Ruby
Here's the deal: I need to extend specifica instances of the class Box with some methods. The methods i need to include live inside modules and i want the Box instance to be able to include the ...
0
votes
1answer
90 views
About class definition in Ruby
Recently, I was investigating into some details about classes in Ruby, and was confused by class definition.
In Ruby, the class definition is as follows,
class A
def self.my_method
end
end
...
0
votes
1answer
471 views
Ruby eigenclass pattern - Asking for clarification
Which information sources describe best Ruby's eigenclasses?
I have read the following:
(see an extra page)
Still, I was NOT able to deduce the following behaviour:
class Object
def sc(n = 1) ...