Files
CSCI-1200/lectures/26_inheritance/README.md
2023-11-27 01:41:53 -05:00

13 lines
334 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# Lecture 26 --- C++ Inheritance and Polymorphism
## Todays Lecture
- Inheritance is a relationship among classes. Examples: bank accounts, polygons, stack & list
- Basic mechanisms of inheritance
- Types of inheritance
- Is-A, Has-A, As-A relationships among classes.
- Polymorphism
## 26.1 Motivating Example: Bank Accounts