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

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值