摘要: 1 对于私有静态字段,只能在本类的内部访问,类的外部,派生类均不能访问 2 对于私有方法,只能在本类的内部访问,类的外部,派生类均不能访问 阅读全文
posted @ 2018-10-16 16:27 Nope!!!! 阅读(89) 评论(0) 推荐(0) 编辑
摘要: from abc import ABCMeta,abstractmethodclass payment(metaclass=ABCMeta): # 抽象类:所有的继承抽象类的子类必须有抽象类定义的方法,否则报错 @abstractmethod def pay(self): passclass Ali 阅读全文
posted @ 2018-10-16 12:38 Nope!!!! 阅读(124) 评论(0) 推荐(0) 编辑
摘要: # -*- coding:utf-8 -*- class Alipay(): def __init__(self,money): self.money = money def pay(self): print('使用阿里支付了%s' % self.money) class Jdpay(): def __init__(self,mo... 阅读全文
posted @ 2018-10-16 12:26 Nope!!!! 阅读(234) 评论(0) 推荐(0) 编辑