ruby 单对象使用已有module的方法

ruby

class A
end
module B
  def test
    'B.test'
  end
end

a = A.new
a.singleton_class.include B
a.test

发表于 2021.06.30