Ruby-使用动态参数生成类

利用ruby如何使用参数动态生成一个类,及其中的方法使用。如何做到? 以下是我的解决办法,请各位
class_name = "A"  
method_name = "test"  
code = "class #{class_name}  
  def #{method_name}  
     puts 'haha'  
  end  
end"  
  
eval(code)   
  
a = A.new  
a.test  

你可能感兴趣的:(Ruby)