module Abc
@msg = "hihihihi"
class B
def c
puts 1
end
end
end
调用Abc中的@msg
puts Abc.instance_variable_get :@msg
module Abc
@msg = "hihihihi"
class B
def c
puts 1
end
end
end
调用Abc中的@msg
puts Abc.instance_variable_get :@msg