这篇文章将为大家详细讲解有关python中描述器有哪些分类,文章内容质量较高,因此小编分享给大家做个参考,希望大家阅读完这篇文章后对相关知识有一定的了解。
Python的优点有哪些
1、简单易用,与C/C++、Java、C# 等传统语言相比,Python对代码格式的要求没有那么严格;2、Python属于开源的,所有人都可以看到源代码,并且可以被移植在许多平台上使用;3、Python面向对象,能够支持面向过程编程,也支持面向对象编程;4、Python是一种解释性语言,Python写的程序不需要编译成二进制代码,可以直接从源代码运行程序;5、Python功能强大,拥有的模块众多,基本能够实现所有的常见功能。
1、非数据描述器
非数据描述器,只对类属性产生作用。当访问类属性时,将调用描述器的__get__方法。当非数据描述器是实例的变量时,实例访问非数据描述器不会调用__get__方法,只是访问了描述器类的实例。
# 示例class Student1: def __init__(self): self.course = 'Python' print('Student1.__init__') class Student2: stu1 = Student1() # Student1()返回的是Student1类的实例 def __init__(self): print('Student2.__init__') print(Student2.stu1.course) # 创建Student2的实例对象stu2 = Student2()print(stu2.stu1.course) # 示例:引入描述器class Stduent1: def __init__(self): self.course = 'Python' print('Stduent1.__init__') def __get__(self, instance, owner): print('self={} instance={} owner={}'.format(self, instance, owner)) class Stduent2: stu1 = Stduent1() def __init__(self): print('Stduent2.__init__') print(Stduent2.stu1.course)# Stduent2.stu1会访问Stduent1的实例,默认会调用__get__方法,但是__get__方法没有将实例返回,因此,Stduent2.stu1.course会报错 stu2 = Stduent2()print(stu2.stu1.course) # 一样的报错 # 示例 引入描述器class Stduent1: def __init__(self): self.course = 'Python' print('Stduent1.__init__') def __get__(self, instance, owner): # 这里的self为Stduent1的实例. instance为实例, 如果是类访问,那么instance为None. owner是调用者的类 print('self={} instance={} owner={}'.format(self, instance, owner)) return self # 返回Student1的实例self class Stduent2: stu1 = Stduent1() def __init__(self): print('Stduent2.__init__') print(Stduent2.stu1.course) stu2 = Stduent2()print(stu2.stu1.course)
2、数据描述器
数据描述器,针对类属性和实例属性都产生作用。当访问或者修改此属性时,将调用相应的__get__或者__set__方法。
# 示例1:class Student1: def __init__(self): self.course = 'Python' print('Student1.__init__') def __get__(self, instance, owner): # 这里的self为Student1的实例. instance为实例, 如果是类访问,那么instance为None. owner是调用者的类 print('self={} instance={} owner={}'.format(self, instance, owner)) return self # 返回Student1的实例self class Student2: stu1 = Student1() def __init__(self): print('Student2.__init__') self.y = Student1() # 没有调用__get__方法 print(Student2.stu1.course) stu2 = Student2()print(stu2.y) # 示例,数据描述器class Student1: def __init__(self): self.course = 'Python' print('Student1.__init__') def __get__(self, instance, owner): print('self={} instance={} owner={}'.format(self, instance, owner)) return self def __set__(self, instance, value): print('self={} instance={} value={}'.format(self, instance, value)) self.course = value class Student2: stu1 = Student1() def __init__(self): print('Student2.__init__') self.y = Student1() # 调用了__get__方法 print(Student2.stu1.course) stu2 = Student2()print(stu2.stu1)
关于python中描述器有哪些分类就分享到这里了,希望以上内容可以对大家有一定的帮助,可以学到更多知识。如果觉得文章不错,可以把它分享出去让更多的人看到。