(U) Ruby 扩展:rb_gc_mark() 和实例变量

发布于 2024-07-22 22:10:46 字数 139 浏览 6 评论 0原文

我正在编写一个定义类的 ruby​​ 扩展。 如果我使用 Data_Wrap_Struct() 实现 rb_define_alloc_func() 的回调,是否需要手动标记和释放实例变量? 或者仍然为我处理?

I'm writing a ruby extension that defines a class.
If I use Data_Wrap_Struct() to implement my callback for rb_define_alloc_func(), do I need to manually mark and free the instance variables? Or is that still handled for me?

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

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

发布评论

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

评论(1

傲影 2024-07-29 22:10:46

Ruby 的 GC 将收集 Ruby 对象的实例变量中引用的所有 Ruby 对象。 您不必也不应该自行释放 Ruby 实例变量(即在扩展中使用 rb_iv_set() / rb_iv_get() 访问的任何对象)。

但是,如果包装的 C 结构 引用 Ruby 对象,那么您必须在传递给 Data_Wrap_Struct()mark 回调中标记这些对象>。

(并且您始终必须释放底层结构,并在 free 回调中执行任何其他可能需要的清理工作,例如关闭文件、套接字等。)

Ruby's GC will collect any Ruby objects that are referenced in your Ruby object's instance variables. You don't have to, and should not, free Ruby instance variables yourself (i.e. any objects accessed with rb_iv_set() / rb_iv_get() in your extension).

However, if the wrapped C struct references Ruby objects, then you'll have to mark those in the mark callback you are passing to Data_Wrap_Struct().

(And you will always have to free the underlying struct, and do any other clean-up that may be necessary such as closing files, sockets, etc. in your free callback.)

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