Ruby 中带括号和不带括号调用 method_missing 的区别
是否有可能在 Ruby 中的 method_missing 声明中确定是否使用括号表示法(即:
foo.non_existing_method()
或使用无括号表示法:调用
foo.non_existing_method
给定的missing_method(不带任何参数) )?
我需要这个来解决我非常具体的测试问题。
Is there any possibility to establish in method_missing declaration in Ruby whether a given missing_method was called (without any arguments) using parentheses notation, ie:
foo.non_existing_method()
or using parentheses-less notation:
foo.non_existing_method
?
I need this to solve my very specific testing problem.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不。
由于两者完全相同,因此不可能有办法检测差异。
无论如何,这没有意义,因为两者完全相同,所以也不可能有任何行为差异。
如果您能够检测到差异,那么您的方法也可以表现不同,这对于该方法的任何用户来说都会极其令人惊讶。
No.
Since both are exactly the same, there cannot possibly be a way to detect the difference.
It doesn't make sense anyway, since both are exactly the same, so there cannot possibly any behavorial difference, either.
If you could detect the difference, then you could also have your method behave differently, which would be extremely surprising to any user of that method.