博客
关于我
理解Descriptor in Python
阅读量:357 次
发布时间:2019-03-04

本文共 897 字,大约阅读时间需要 2 分钟。

  • Abstract

    Python descriptors were introduced in Python 2.2, along with new style classes

    Defines descriptors, summarizes the protocol, and shows how descriptors ara called. Examines a custom descripto and several built-in Python descriptors including

    functions,

    properties,

    static methods,

    class methods.

    Shows how each works by giving a pure Python equivalent and a sample application.

    Learning about descriptors not only provides access to a larger toolset, it creates a deeper understanding of how Python works and appreciation for the elegance of its design.

  • Definition and Introduction

    In general, a descriptor is an object attribute with “binding behavior”, one whose attribute access has been overridden by methods in the descriptor protocol.

    Those methods are __get__(), __set__(),and __delete__().

    If any of those methods are defined for an object, it is said to be a descriptor.

  • Reference

转载地址:http://syge.baihongyu.com/

你可能感兴趣的文章
mysql的全文检索的方法
查看>>
MySQL的函数
查看>>
mysql的函数DATE_ADD()
查看>>
mysql的函数操作
查看>>
mysql的分类排名_mysql高低排名
查看>>
Mysql的分表设计方法 (水平分表和垂直分表)
查看>>
mysql的分页查询limit关键字
查看>>
MySql的创建数据表、约束、外键约束的创建修改删除、级联操作
查看>>
MySQL的删除修改的实验目的_基础篇 - 数据库及表的修改和删除
查看>>
MySQL的四大隔离级别,你都知道哪些?
查看>>
MySQL的四种事务隔离级别
查看>>
MySQL的基本命令
查看>>
Mysql的备份与恢复类型
查看>>
mysql的大小写对性能的影响问题
查看>>
mysql的密码管理、mysql初始密码查找、密码修改、mysql登录
查看>>
mysql的常见八股文面试题
查看>>
MySQL的常见命令
查看>>
mysql的引擎以及优缺点_MySQL有哪些存储引擎,各自的优缺点,应用场景-阿里云开发者社区...
查看>>
MySQL的操作:
查看>>
mysql的数据类型有哪些?
查看>>