gpt4 book ai didi

ruby - 来自 `ObjectSpace._id2ref` 的错误

转载 作者:太空宇宙 更新时间:2023-11-03 16:06:07 25 4
gpt4 key购买 nike

ObjectSpace._id2ref 返回的以下两种错误有什么区别?

0x... is recycled object (RangeError)

0x... is not id value (RangeError)

最佳答案

not id value 意味着从来没有一个对象具有该 id。

recycled object 表示曾经有一个具有该 id 的对象,但它已被垃圾回收。

Ruby 1.9.3/Ubuntu 上的演示:

x = Object.new
id = x.object_id

puts "0x%x" % id
# => 0x4aef5e8

puts ObjectSpace._id2ref id
# => #<Object:0x95debd0>

x = nil

puts ObjectSpace._id2ref id
# => #<Object:0x95debd0>

GC.start

puts ObjectSpace._id2ref id
# => 0x4aef5e8 is recycled object (RangeError)

请注意,Object#to_s 中的数字不是object_id - 根据docs它是“对象 ID 的编码”。

关于ruby - 来自 `ObjectSpace._id2ref` 的错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13508536/

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