在子类化Ruby哈希时如何覆盖[] =方法?

时间:2012-10-20 13:42:48

标签: ruby hash

我有一个扩展Hash的类,我想跟踪修改哈希键的时间。

覆盖[key]=语法方法来实现此目的的正确语法是什么?我想插入我的代码,然后调用父方法。

C方法可以实现吗?我从文档中看到底层方法是

rb_hash_aset(VALUE hash, VALUE key, VALUE val)

如何将其分配给括号语法?

3 个答案:

答案 0 :(得分:5)

方法签名为def []=(key, val)super用于调用父方法。这是一个完整的例子:

class MyHash < Hash
  def []=(key,val)
    printf("key: %s, val: %s\n", key, val)
    super(key,val)
  end
end

x = MyHash.new

x['a'] = 'hello'
x['b'] = 'world'

p x

答案 1 :(得分:2)

我认为使用set_trace_func是更通用的解决方案

class MyHash < Hash
  def initialize
    super
  end

  def []=(key,val)
    super
  end
end

set_trace_func proc { |event, file, line, id, binding, classname|
  printf "%10s %8s\n", id, classname if classname == MyHash
}

h = MyHash.new
h[:t] = 't'

#=>
initialize   MyHash
initialize   MyHash
initialize   MyHash
       []=   MyHash
       []=   MyHash
       []=   MyHash

答案 2 :(得分:1)

class MyHash < Hash
  def []=(key,value)
    super
  end
end