class C
end
var = "I am a local var outside"
C.class_eval do
def self.a_class_method
puts var
end
# I know, this is not correct, because the 'def' created a new scope;
# I am asking a solution to make it;
# I also know that use 'define_method' can create a instance method without creating a new scope.
# but my point is how to define a **class method**
end
| ||||
|
feedback
|
|
Class methods don't really exist in Ruby, they are just singleton methods of the class object. Singleton methods don't really exist, either, they are just ordinary instance methods of the object's singleton class. Since you already know how to define instance methods (using
Current versions of Ruby have a
But actually, current versions of Ruby also have
| |||
|
feedback
|