Personnaliser les fonctionnalités par l'héritage

Programmation orientée objet en Python

Alex Yarosh

Content Quality Analyst @ DataCamp

une hiérarchie de classes de comptes

Programmation orientée objet en Python

Ce que nous avons jusqu'ici

class BankAccount:
    def __init__(self, balance):
       self.balance = balance

    def withdraw(self, amount):
       self.balance -=amount

# Empty class inherited from BankAccount
class SavingsAccount(BankAccount):
    pass
Programmation orientée objet en Python

Personnaliser les constructeurs

class SavingsAccount(BankAccount):    

    # Constructor specifically for SavingsAccount with an additional parameter
    def __init__(self, balance, interest_rate):  

# Call the parent constructor using ClassName.__init__() BankAccount.__init__(self, balance) # <--- self is a SavingsAccount but also a BankAccount
# Add more functionality self.interest_rate = interest_rate
  • Vous pouvez d'abord exécuter le constructeur du parent avec Parent.__init__(self, args...)
  • Ajouter plus de fonctionnalités
  • Il n'est pas obligatoire d'appeler le constructeur du parent
Programmation orientée objet en Python

Créer des objets avec un constructeur personnalisé

# Construct the object using the new constructor
acct = SavingsAccount(1000, 0.03)
acct.interest_rate
0.03
Programmation orientée objet en Python

Ajouter des fonctionnalités

  • Ajouter des méthodes comme d'habitude
  • Utiliser les données du parent et de l'enfant
class SavingsAccount(BankAccount):    

  def __init__(self, balance, interest_rate): 
     BankAccount.__init__(self, balance) 
     self.interest_rate = interest_rate

  # New functionality
  def compute_interest(self, n_periods = 1):
     return self.balance * ( (1 + self.interest_rate) ** n_periods - 1)

Programmation orientée objet en Python

une hiérarchie de classes de comptes

Programmation orientée objet en Python

Personnaliser les fonctionnalités

class CheckingAccount(BankAccount):

def __init__(self, balance, limit): BankAccount.__init__(self, balance) self.limit = limit
def deposit(self, amount): self.balance += amount
def withdraw(self, amount, fee=0):
if fee <= self.limit: BankAccount.withdraw(self, amount + fee) else: BankAccount.withdraw(self, amount + self.limit)
  • Modifier la signature (ajouter des paramètres)
  • Utiliser Parent.method(self, args...) pour appeler une méthode du parent
Programmation orientée objet en Python
check_acct = CheckingAccount(1000, 25)

# Will call withdraw from CheckingAccount
check_acct.withdraw(200)
# Will call withdraw from CheckingAccount
check_acct.withdraw(200, fee=15)
bank_acct = BankAccount(1000)

# Will call withdraw from BankAccount
bank_acct.withdraw(200)
# Will produce an error
bank_acct.withdraw(200, fee=15)
TypeError: withdraw() got an unexpected
 keyword argument 'fee'
Programmation orientée objet en Python

Passons à la pratique !

Programmation orientée objet en Python

Preparing Video For Download...