当前位置:  开发笔记 > 后端 > 正文

覆盖类似的方法,缩短语法

如何解决《覆盖类似的方法,缩短语法》经验,为你挑选了1个好方法。

在Ruby类中,我覆盖了三种方法,并且在每种方法中,我基本上都做同样的事情:

class ExampleClass

  def confirmation_required?
    is_allowed && super
  end

  def postpone_email_change?
    is_allowed && super
  end

  def reconfirmation_required?
    is_allowed && super
  end

end

是否有更紧凑的语法?如何缩短代码?



1> 小智..:

如何使用别名?

class ExampleClass

  def confirmation_required?
    is_allowed && super
  end

  alias postpone_email_change? confirmation_required?
  alias reconfirmation_required? confirmation_required?
end

推荐阅读
手机用户2402851155
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有