Ruby 中带括号和不带括号调用 method_missing 的区别

发布于 2024-10-09 00:11:12 字数 242 浏览 7 评论 0原文

是否有可能在 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 技术交流群。

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

发布评论

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

评论(1

遗心遗梦遗幸福 2024-10-16 00:11:12

不。

由于两者完全相同,因此不可能有办法检测差异。

无论如何,这没有意义,因为两者完全相同,所以也不可能有任何行为差异。

如果您能够检测到差异,那么您的方法也可以表现不同,这对于该方法的任何用户来说都会极其令人惊讶

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.

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