如何确定 ruby 中 lambda 接受的参数数量
是否有任何方法或东西 x
其中,提供 z = lambda {|x, y, z| nil}
我们可以说
z.x #=> 3
当然,如果能完成工作,语法可以有所不同。谢谢你!
Is there any method or something x
in which, provided z = lambda {|x, y, z| nil}
we can say
z.x #=> 3
Of course, syntax can differ if it gets the job done. Thank you!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
是的。
Yes.
Proc#arity
方法告诉你这:The
Proc#arity
method tells you this: