模块中单例方法的别名
我有一个名为 Setup
的模块,想要为一个方法添加别名。
这就是它的外观,但它不起作用:
module Setup
def Setup::option_set?(option)
#...
end
alias :option_set? :get_information
end
我猜它与 Setup::
-前缀有关。该怎么办?
I have a module called Setup
and want to alias a method.
This is how it looks, but how it doesn't work:
module Setup
def Setup::option_set?(option)
#...
end
alias :option_set? :get_information
end
I guess it has to do with the Setup::
-prefix. What to do?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)