ruby 给对象添加新的方法

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

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

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

  a = 'Hello World'对象

  def a.do_some_thingrem

    puts '作个大新闻'hash

  endconsole

 

  def String.do_another_thingtable

    puts '+1s'class

  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