ruby 给对象添加新的方法

js 里面每个对象都是一个hash-table, 添加方法的操作也很方便, a = {}, a.doSomeThing = ()=>{console.log('nice')}

ruby, 也允许给对象添加方法:

1. 利用def 来给, 对象或类, 添加属于自己的方法:

  a = 'Hello World'

  def a.do_some_thing

    puts '做个大新闻'

  end

  def String.do_another_thing

    puts '+1s'

  end

2. 使用类和对象的方法来添加

  def obj.a_singleton_method; end
  def MyClass.another_class_method; end
 
3. 移除对象的方法
  有2种方式, remove_method :method_name, undef :method_name
  remove_method 会去除当前类上面的方法, 但是如果父类有同名方法, 那么会变成父类同名方法的调用
  undef 估计是把对应的方法名的方法赋值了undefind ,( 应该是直接堵死了 )

  class << my_array

    remove_method(:random_dump)

  end

原文地址:https://www.cnblogs.com/mahong-shaojiu-ruby/p/5919423.html