什么是“终止对象”,为什么我不能调用它的方法?

发布于 2024-10-11 11:07:55 字数 202 浏览 5 评论 0原文

我定期收到此异常:

NotImplementedError: method `at' called on terminated object

在这行代码上:

next if Hpricot(html).at('a')

此错误意味着什么?我怎样才能避免它?

Periodically I get this exception:

NotImplementedError: method `at' called on terminated object

on this line of code:

next if Hpricot(html).at('a')

What does this error mean? How can I avoid it?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

嘦怹 2024-10-18 11:07:55

您正在使用的库使用自定义 C 扩展。在 C 扩展中,它尝试调用已被垃圾收集的 Ruby 对象的方法。

这在纯 Ruby 中不会发生,因为垃圾收集器只会释放无法再从任何引用访问的对象。但在 C 中,可能会在垃圾收集器不检查的地方保留对 Ruby 对象的引用(例如,编译器可能已将变量放入 CPU 寄存器中)。

The library you are using makes use of a custom C extension. In the C extension, it is trying to call a method on a Ruby object which has already been garbage-collected.

This can't happen in pure Ruby, because the garbage collector will only free objects which are no longer accessible from any reference. But in C, it is possible to have a reference remaining to a Ruby object, in a place which the garbage collector doesn't check (for example, the compiler may have put a variable in a CPU register).

银河中√捞星星 2024-10-18 11:07:55

这可能是一个链接问题。检查您是否未链接该扩展两次。

It might be a linking problem. Check that you didn't link the extension twice.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文