Locked lesson.
About this lesson
Inheriting information from other classes.
Exercise files
Download this lesson’s related exercise files.
Class Inheritance.docx59.5 KB Class Inheritance - Solution.docx
59.4 KB
Quick reference
Class Inheritance
Classes can inherit things from other classes.
When to use
Do this to reuse aspects of other classes inside of other classes.
Instructions
To inherit the things from another class:
class New < Old
end
Where Old is the class you want to inherit from.
Hints & tips
- It's easy to inherit things from other classes, just use <
Lesson notes are only available for subscribers.