ruby中使用其它模块中的实例变量

module Abc
    @msg = "hihihihi"
    
    class B
        def c
            puts 1
        end
    end
end

调用Abc中的@msg

puts Abc.instance_variable_get :@msg

你可能感兴趣的:(ruby中使用其它模块中的实例变量)