xiaohong = Girl("xiaohong", 18)
# 子类的对象不能在外部直接调用父类/祖父类的私有属性和方法
# print(xiaohong.__age)
# print(xiaohong.__secret)
xiaohong.test()
Python面向对象之私有属性和方法(2)
内容版权声明:除非注明,否则皆为本站原创文章。
转载注明出处:https://www.heiqu.com/22555a0f173839c1f4f46af4f1b32963.html
xiaohong = Girl("xiaohong", 18)
# 子类的对象不能在外部直接调用父类/祖父类的私有属性和方法
# print(xiaohong.__age)
# print(xiaohong.__secret)
xiaohong.test()
内容版权声明:除非注明,否则皆为本站原创文章。
转载注明出处:https://www.heiqu.com/22555a0f173839c1f4f46af4f1b32963.html