Created
December 5, 2010 15:01
-
-
Save dtrasbo/729150 to your computer and use it in GitHub Desktop.
This file contains 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
class TheUppermostClass | |
def initialize(one, two, three, four) | |
end | |
end | |
class TheInheritingClass < TheUppermostClass | |
def initialize(one, two, three) | |
super(one, two, three, 'four') | |
end | |
end | |
class TheInheritingClass | |
def initialize(*args) | |
super | |
# You would expect this to call TheInheritingClass#initialize because that's | |
# the method we're overriding. | |
end | |
end | |
TheInheritingClass.new('one', 'two', 'three') | |
# But the above results in an argument error (3 for 4) because it actually calls | |
# the superclass, TheUppermostClass. | |
# How to fix? |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
super
won't call the method your overriding, you'll have to do something like this: https://gist.github.com/729165 :)