o = Object.new
def o.method_missing(m,*args)
puts "xxxxxxx #{m}"
end
p o.some_method
What is the underlying process of overriding a method?
o = Object.new
def o.method_missing(m,*args)
puts "xxxxxxx #{m}"
end
p o.some_method
What is the underlying process of overriding a method?
Copyright © 2021 Jogjafile Inc.
If a called method is not defined, it can tell that you are calling a missing method.
By executing the new defined method.
By design.