Ruby,Splat 的源代码?
昨天有人问有关 splat 运算符的问题,我想看看源代码……那是用 C 编写的还是用 Ruby 编写的? 哪里可以找到呢?
Someone asked about the splat operator yesterday, and I wanted to see the source code... would that be written in C or in Ruby? Where would it be found?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
一些快速的 Google 搜索发现它是在 eval.c。 您可以在文件中的几个地方找到对“splat”的引用,但我对 Ruby 的内部工作原理还不够熟悉,无法理解它。
Some quick Google searching turned up that it's implemented in eval.c. You can find references to "splat" in a few places in the file, but I'm not familiar enough with the inner workings of Ruby to make any sense of it.
从 Ruby 2.4 开始,splat 运算符在 Ruby 核心文档中的记录很少。 不过,这是该语言的核心功能,splat 运算符的源代码可以在
rb_yield_splat(VALUE 值)
。单元测试 for
rb_yield_splat
使发生的事情更加清楚:The splat operator is poorly documented in the core Ruby documentation as of Ruby 2.4. It's a core feature of the language, though, and the source code for the splat operator can be found in
vm_eval.c
underrb_yield_splat(VALUE values)
.The unit test for
rb_yield_splat
makes it clearer what is happening: