method def in method vs method def in block

K

Kyung won Cheon

class A
def aaa
puts "called aaa by #{self}"
def bbb
puts "called bbb by #{self}"
end
end
end

a = A.new
p a.respond_to?:)bbb) # => false
a.aaa
p a.respond_to?:)bbb) # => true
a.bbb

p A.public_instance_methods.grep(/bbb/) # => ["bbb"]

a2 = A.new
a2.bbb

p a.respond_to?:)ccc) # => false

a.instance_eval do
def ccc
puts "called ccc by #{self}"
end
end

p a.respond_to?:)ccc) # => true
a.ccc

p A.public_instance_methods.grep(/ccc/) # => []

a2.ccc rescue puts $! # undefined method

#####################
# What's the diff ??
# Help Me^^
#####################
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,769
Messages
2,569,582
Members
45,057
Latest member
KetoBeezACVGummies

Latest Threads

Top