LoginSignup
0
0

More than 1 year has passed since last update.

alias_methodについて

Posted at

alias_methodとは

メソッドの別名を定義するメソッドになります。

使用方法

example.rb
class
 
alias_method :hello, :hello_good_morninng

end

alias_method :別名メソッド, :元のメソッド名

で指定できます。

参照

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0