OOP+继承+术语 Python

银行账户类

class Account:

    def __init__(self,filepath):
        self.filepath=filepath
        with open(filepath,'r') as file:
            self.balance=float(file.read())

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

    def commit(self):
        with open(self.filepath,'w') as file:
            file.write(str(self.balance))
    
#inheritate
class Checking(Account):
    def __init__(self,filepath,fee):
        Account.__init__(self,filepath)
        self.fee=fee
    def transfer(self,amount):
        self.balance=self.balance-amount-self.fee


checking=Checking("account/balance.txt",1)

checking.transfer(10)
checking.commit()

注释——doc

#inheritance
class Checking(Account):
    """this class generates checking account object """
    type="checking"  #class variable  #可被所有函数调用
    
    def __init__(self,filepath,fee):
        Account.__init__(self,filepath)
        self.fee=fee
    def transfer(self,amount):
        self.balance=self.balance-amount-self.fee

print(jacks_checking.__doc__)  #调用注释(注意空格)

OOP——Glossary(术语)

Class 	类
Object instance 对象实例
Instance variable 实例变量
Class variable  类变量
Doc strings 注释
Data member 类中的含值变量
Constructor 构造函数
Methods 类函数
Instantiation 初始化类变量
Inheritance 继承
Attributes 调用类实例中的类变量
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值