标签:print 多态 方式 访问权限 安全 pytho school 特性 init
- 类的私有属性 和 私有方法,都不能通过对象直接访问,但是可以在本类内部访问;
- 类的私有属性 和 私有方法,都不会被子类继承,子类也无法访问;
- 私有属性 和 私有方法 往往用来处理类的内部事情,不通过对象处理,起到安全作用。
class Master(object): def __init__(self): self.kongfu = "古法煎饼果子配方" def make_cake(self): print("[古法] 按照 <%s> 制作了一份煎饼果子..." % self.kongfu) class School(object): def __init__(self): self.kongfu = "现代煎饼果子配方" def make_cake(self): print("[现代] 按照 <%s> 制作了一份煎饼果子..." % self.kongfu) class Prentice(School, Master): def __init__(self): self.kongfu = "猫氏煎饼果子配方" # 私有属性,可以在类内部通过self调用,但不能通过对象访问 self.__money = 10000 # 私有方法,可以在类内部通过self调用,但不能通过对象访问 def __print_info(self): print(self.kongfu) print(self.__money) def make_cake(self): self.__init__() print("[猫氏] 按照 <%s> 制作了一份煎饼果子..." % self.kongfu) def make_old_cake(self): Master.__init__(self) Master.make_cake(self) def make_new_cake(self): School.__init__(self) School.make_cake(self) class PrenticePrentice(Prentice): pass damao = Prentice() # 对象不能访问私有权限的属性和方法 # print(damao.__money) # damao.__print_info() pp = PrenticePrentice() # 子类不能继承父类私有权限的属性和方法 print(pp.__money) pp.__print_info()
例子:
# 如果一个属性或者方法 以两个下划线开头 标识着是一个私有的属性和方法 # 保证的数据安全 # 自定义古法师傅类 class Master(object): def __init__(self): # 公有属性(无论在类的外部 还是在类的内部都可以正常的使用) self.kongfu = "古法配方" # 私有属性(只能在类的内部使用self访问 不能再类的外部使用对象进行访问) self.__money = 10000 def func(self): print("钱:%d" % self.__money) self.__hello_python() # 公有方法 def make_cake(self): print("按照<%s>制作煎饼果子" % self.kongfu) # 私有方法 def __hello_python(self): print("你好python") # 实际开发中 有些属性不想在类的外面让对象调用 可以把这属性进行私有 lsf = Master() print(lsf.kongfu) # print(lsf.__money) lsf.func() lsf.make_cake()
标签:print 多态 方式 访问权限 安全 pytho school 特性 init
原文地址:https://www.cnblogs.com/kangwenju/p/12871981.html