文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

python中描述器有哪些分类

2023-06-14 15:46

关注

这篇文章将为大家详细讲解有关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中描述器有哪些分类就分享到这里了,希望以上内容可以对大家有一定的帮助,可以学到更多知识。如果觉得文章不错,可以把它分享出去让更多的人看到。

阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     801人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     348人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     311人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     432人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     220人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-后端开发
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯