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

No members online now.

Forum statistics

Threads
474,432
Messages
2,571,682
Members
48,796
Latest member
Greg L.

Latest Threads

Top