想在这个例子的 My 类中 doit 方法调用 My_a 的 dosth(),要怎么写呢?『有木有 Java 的 static 方法一说?』 如果要用 obj0 来调用 My_a 的 dosth 又该怎么写呢?
谢谢社区的朋友了
module My_a
def dosth
puts "This is A do sth."
end
end
module My_b
def dosth
puts "This is B do sth."
end
end
class My
include My_a
include My_b
def doit
puts "明确调用My_a的dosth方法.\n"
end
end
obj0 = My.new
obj0.doit