我如何检索“独立”文件Ruby 的 C 扩展 API 上的符号

发布于 2024-10-08 19:00:18 字数 163 浏览 4 评论 0原文

我想从 C 函数返回多个值,恕我直言,哈希是一个不错的选择。 我首先使用 rb_intern('A_KEY') 创建密钥,但扩展程序崩溃了。现在,我使用 rb_str_new2,但我更喜欢符号。

如何创建新符号并在不引用类或方法的情况下使用它?

I want to return several values from a C function, and IMHO, a hash is a good option.
I first used rb_intern('A_KEY') to create the keys, but the extension crashed. Now, I am using rb_str_new2, but I prefer symbols.

How do I create a new symbol, and use it without referring to a class or a method?

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

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

发布评论

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

评论(1

_蜘蛛 2024-10-15 19:00:18

您需要使用 ID2SYM 宏将从 rb_intern 获得的标识符转换为 ruby​​ 符号。尝试更改

rb_intern('A_KEY')

ID2SYM(rb_intern('A_KEY'))

You need to use the ID2SYM macro to convert the identifier that you get from rb_intern into a ruby symbol. Try changing

rb_intern('A_KEY')

to

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