Created
January 25, 2016 13:58
-
-
Save taisyo7333/6c0a80036916da6117bf to your computer and use it in GitHub Desktop.
Ruby Class methods : alias , undef
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# encoding: SJIS | |
class Hoge | |
def huga1; end | |
def huga2; end | |
alias :huga3 :huga1 | |
undef :huga2 | |
end | |
p Hoge.instance_methods(false) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
>ruby Code4-10.rb | |
ruby Code4-10.rb | |
[:huga1, :huga3] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment