1.访问权限
公开的(public):类的里面、类的外面都可以使用,也可以继承
保护的(protect):类的里面可以使用也可以被继承,类的外面不能使用
私有的(private):类的里面可以用,类的外面不可以使用也不能被继承
2.python中类的内容的访问权限
严格来说,Python类中的内容只有公开的;私有化是假的私有化
3.怎么私有化
在方法名前或者属性名前加__(但是名字后不能加__)
原理:不是真的私有化,而是在___开头的属性名和方法名前加了'_类名'
class Person:
num1 = 61
__num2 = 100
def __init__(self, name, age):
self.name = name
self.age = age
self.__gender = '男'
def func1(self):
print('111111%s%s' % (self.name, self.__gender))
@staticmethod
def func2():
print('222222')
@classmethod
def __func3(cls):
print(cls.__num2)
print('=======默认公开的========')
p1 = Person('小明.'
'3'
'65++++++++++++++++++++++', 18)
print(p1.name)
p1.func1()
Person.func2()
print('=======私有的==========')
print(p1.__dict__)
获取当前时间的时间戳
时间戳:当前时间距离1970年1月1日0分0秒的时间差,单位是秒
'2019-11-26 14:15:00'
'2019/11/26 14:15:00'
import time
time1 = time.time()
print(time1)
# localtime(时间戳) - 将时间戳转换成当地的具体时间
time2 = time.localtime(time1)
print(time2)
4.getter和setter
1)什么时候用
如果希望在对象属性赋值前做点别的什么事情就给这个属性添加setter
如果希望在获取属性值之前做点别的什么事情就给这个属性添加getter
2)怎么用
getter
a.将需要添加getter的属性名前加_
b.声明函数:声明前加@property,
函数名不带_的属性名
函数需要一个返回值,返回值就是获取这个属性能够得到的值
c.在外面使用属性的时候不带下划线
setter:
注意:如果想要给属性添加setter必须先添加getter
a.声明函数:声明前加@getter名.setter;
函数名不带_的属性名;
函数不需要返回值,但是需要一个参数,这个参数就是给属性赋的值
b.在外面给属性赋值的时候不带下划线
class Person:
def __init__(self, age: int):
self._age = age
self._time = 1574750141.7208552
@property
def time(self):
t_time = time.localtime(self._time)
return '{}/{}/{} {}:{}:{}'.format(t_time.tm_year, t_time.tm_mon, t_time.tm_mday, t_time.tm_hour, t_time.tm_min, t_time.tm_sec)
@property
def age(self):
return self._age
@age.setter
def age(self, value):
if isinstance(value, int):
if 0 <= value <= 200:
self._age = value
else:
raise ValueError
else:
raise ValueError
p1 = Person(1)
print(p1.time)
class Circle:
pi = 3.1415926
def __init__(self, r):
self.r = r
self._area = 0
@property
def area(self):
return Circle.pi * self.r * self.r
@area.setter
def area(self, value):
print("给area赋值", value)
5.继承
1.什么是继承
继承是让子类直接拥有父类的属性和方法
子类 - 继承者(儿子)
父类 - 被继承者(爸爸),又叫超类
2.怎么继承
语法:
class 类名(父类1,父类2,.....):
类的说明文档
类的内容
3.继承那些东西
父类所有的属性和方法子类都会继承
class Person(object):
num = 61
def __init__(self):
self.name = '小明'
self.age = 18
@staticmethod
def func1():
print('静态方法')
class Student(Person):
pass
子类直接使用父类的属性和方法
4.子类中添加属性和方法
1)添加方法和字段
在子类中直接声明新的属性和方法
注意:如果添加的字段名和方法名和父类的字段方法同名了,子类中的字段和方法会覆盖父类的字段和方法 - 重写
2)添加对象属性
在自己的init方法中添加新的属性,并且需要通过super()去调用父类的init方法继承父类的对象属性
5.super的应用
可以在类的任何一个对象方法或者类方法中通过super()调用父类的对象方法或者类方法
super(类1,类1的对象).方法() -> 调用类1中的方法
super().方法() <==> super(当前类,当前类的对象)
super(type, obj) -> 要求obj必须是type的对象或者是type的子类对象
class Animal:
num = 100
def __init__(self):
self.age = 10
self.gender = '雌'
@staticmethod
def a_func1(self):
print('动物的对象方法1')
@staticmethod
def func1():
print('动物中的静态方法')
def func2(self):
print('1')
class Cat(Animal):
voice = '喵~'
def __init__(self):
super().__init__() # 调用当前类的父类的__init__方法
self.color = '白色'
self.breed = '加菲猫'
@classmethod
def c_func1(cls):
print('猫的类方法')
@staticmethod
def func1():
print('猫中的静态方法')
cat1 = Cat()
print(cat1.age, cat1.gender)
class A:
def func(self):
print('this is A')
class B(A):
def func(self):
print('this is B')
class C(B):
def func(self):
# super().func()
# super(C, self).func()
super(B, B()).func()
print('this is C')
obj = C()
obj.func()
class Animal:
num = 100
def __init__(self, age=0, gender='雄'):
self.age = age
self.gender = gender
@staticmethod
def a_func1():
print('动物的对象方法')
class Fly:
flag = '飞行'
def __init__(self, height=1000, time=3):
self.height = height
self.time = time
@classmethod
def f_func1(cls):
print('飞行的类方法')
class Bird(Animal, Fly):
pass
b1 = Bird()
# 字段都可以继承
print(Bird.num, Bird.flag)
# 方法都可以继承
b1.a_func1()
Bird.f_func1()
# 对象属性只能继承第一个父类的
print(b1.age, b1.gender)
print(b1.height, b1.time)
方法都可以继承
字段都可以继承
对象属性只能继承第一个父类的