python基础-----类中参数(属性)的访问限制、继承

class Dog(object): #定义类
def init(self, name, type):
self.name=name #给类Dog中的name属性传递数据
self.type=type
d = Dog(‘LiChuang’, “京巴”) #实例化Dog类,向Dog中输入参数

想要外部无法改变Dog类中的属性值,可self.__name、self.__type,使类中参数私有(private)-----------访问限制–禁止访问和修改

通过在类中设置函数可解除这种私有参数设置
class Dog(object):
def init(self, name, type):
self.__name=name
self.__type=type
def set_Dog(name, type): #使__name和__type可被修改
self.__name=name
self.__type=type

class Animal(object):
pass
class Dog(Animal): #Dog继承Animal类的所有属性,也可自己定义相同# # #属性的不同内容,覆盖父类(Animal)
pass

你可能感兴趣的:(python自学笔记)