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
本文标题:ruby中使用其它模块中的实例变量
本文链接:https://www.haomeiwen.com/subject/sbdrqttx.html
网友评论