gpt4 book ai didi

ruby - 哈希上的继承钩子(Hook)

转载 作者:太空宇宙 更新时间:2023-11-03 18:23:57 24 4
gpt4 key购买 nike

def Object.inherited(c)
puts "class #{c} extends #{self}"
end

c = Class.new
#class #<Class:0xcfe57ac> extends Object
#=> #<Class:0xcfe57ac>

和预期的一样好

def Hash.inherited(h)
puts "The Hash is #{h}"
end

h = Hash.new
#=> {}

为什么在这种情况下没有调用 Hook ?

最佳答案

因为Class.new创建了一个类,也就是继承了一个类,调用了inherited,但是Hash.new没有创建一个类,并且不调用 inherited

关于ruby - 哈希上的继承钩子(Hook),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13891964/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com