Created
January 28, 2013 03:49
-
-
Save yangsu/4652877 to your computer and use it in GitHub Desktop.
Ruby Inheritance
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 Base | |
def initialize() | |
@x = 10 | |
end | |
end | |
class Derived < Base | |
def x | |
@x = 20 | |
end | |
end | |
d = Derived.new | |
p d.x # => 20 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment