Dziedziczenie wielokrotne

Programowanie obiektowe w Pythonie – poziom średnio zaawansowany

Jake Roach

Data Engineer

Dziedziczenie wielokrotne

Umożliwia klasie dziedziczenie po więcej niż jednej klasie

  • Intern może dziedziczyć po Employee i Student
  • Zachowuje relację „jest"

Klasa Intern dziedzicząca po klasach Employee i Student.

class Employee:
  def __init__(self, department):
    self.department = department

  def begin_job(self):
    print(f"Welcome to {self.department}!")
class Student:
  def __init__(self, school):
    self.school = school
    self.courses = []

  def add_course(self, course_name):
    self.courses.append(course_name)
Programowanie obiektowe w Pythonie – poziom średnio zaawansowany

Dziedziczenie wielokrotne

class Intern(Employee, Student):
    def __init__(self, department, school, duration):
        # Make a call to BOTH constructors
        Employee.__init__(self, department)
        Student.__init__(self, school)
        self.duration = duration

    def onboard(self, mentor):
        # Implementation of a new method
        ...
Programowanie obiektowe w Pythonie – poziom średnio zaawansowany

Tworzenie obiektu Intern

stephen = Intern("Software Development", "Echo University", 10)
stephen.begin_job()  # Method from Employee
Welcome to Software Development!
stephen.add_course("Intermediate OOP in Python")  # Method from Intern
print(stephen.courses)
["Intermediate OOP in Python"]
Programowanie obiektowe w Pythonie – poziom średnio zaawansowany

Dziedziczenie wielopoziomowe

Dziedziczenie po klasie, która sama dziedziczy po innej klasie — relacja wnuka

  • Zachowuje relację „jest"

Grafika ilustrująca dziedziczenie wielopoziomowe.

class Person:
  def __init__(self, name):
    self.name = name

  def introduce(self):
      print(f"Hello, my name is {self.name}")
class Employee(Person):
  def __init__(self, name, title):
    Person.__init__(self, name)
    self.title = title

  def change_position(self, new_title):
    print(f"Starting new role as {new_title}")
    self.title = new_title
Programowanie obiektowe w Pythonie – poziom średnio zaawansowany

Dziedziczenie wielopoziomowe

class Manager(Employee):
  def __init__(self, name, title, number_reports):
    Employee.__init__(self, name, title)
    self.number_reports = number_reports

mike = Manager("Mike", "Engineering Manager", 14)
mike.introduce()
mike.change_position("Director of Engineering")
print(mike.number_reports)
Hello, my name is Mike
Starting new role as Director of Engineering
14
Programowanie obiektowe w Pythonie – poziom średnio zaawansowany

Kolejność rozwiązywania metod (MRO)

Kolejność, w jakiej Python wyznacza metodę, gdy klasy nadrzędna i podrzędna definiują metodę o tej samej nazwie

Zasady wyznaczania MRO:

  • Najpierw przeszukiwane są klasy podrzędne
  • Klasy nadrzędne przeszukiwane są od lewej do prawej, zgodnie z kolejnością w definicji klasy

$$

Metoda .mro() i __mro__

Klasa podrzędna dziedzicząca po wielu klasach nadrzędnych.

1 Beyond the Basic Stuff with Python, Sweigart (pg. 311)
Programowanie obiektowe w Pythonie – poziom średnio zaawansowany

Kolejność rozwiązywania metod (MRO)

class Intern(Employee, Student):  # Intern inherits the Employee and the Student classes
  ...

# Find the MRO for Intern
print(Intern.mro())
[<class '__main__.Intern'>, <class '__main__.Employee'>, <class '__main__.Student'>, <class 'object'>]
# Find the MRO using __mro__
print(Intern.__mro__)
(<class '__main__.Intern'>, <class '__main__.Employee'>, <class '__main__.Student'>, <class 'object'>)
Programowanie obiektowe w Pythonie – poziom średnio zaawansowany

Czas na ćwiczenia!

Programowanie obiektowe w Pythonie – poziom średnio zaawansowany

Preparing Video For Download...