Introduction

In this lesson, you’ll learn about two powerful object-oriented programming concepts in Swift: inheritance and polymorphism. These concepts are essential for creating organized, efficient and flexible coding structures. With inheritance, you’ll learn how to establish relationships between classes, enabling the sharing of properties and methods. Then, you’ll explore polymorphism, a powerful technique that allows objects of different classes to be treated uniformly, enhancing code reusability and adaptability.

Dive in to discover how these concepts empower you to write cleaner, more maintainable Swift code.

See forum comments
Download course materials from Github
Previous: Quiz: Structs & Classes Next: Instruction