class A
def self.yui_set(a)
@@a=a
end
end
class B<A
yui_set :hi
def get
return @@a
end
end
class C <A
yui_set :yoo
def get
return @@a
end
end
b=B.new
c=C.new
c.get #=>:yoo
b.get #=>:yoo
b.get #=>:yoo
欢迎光临 Project1 (https://rpg.blue/) | Powered by Discuz! X3.1 |