1 class NPC
2 def talk(a=nil) #nil为空集
3 p a
4 end
5 end
6
7 class Lioumang < NPC
8 def talk(a)
9 super(5) # 以5作为参数进行调用
10 super(a) # 以5作为参数进行调用
11 super # 以5作为参数进行调用,super(a)的简写
12 a = 1
13 super # 以1作为参数进行调用,super(a)的简写
14 super() # 无参数的调用
15 end
16 end
17 Lioumang.new.talk 5