博客
关于我
理解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数据库 InnoDB存储引擎中Master Thread的执行流程
查看>>
MySQL数据库 范式
查看>>
Mysql数据库B-Tree索引
查看>>
mysql数据库io空闲_mysql数据库磁盘io高的排查
查看>>
mysql数据库root密码忘记,查看或修改的解决方法
查看>>
MySQL数据库SQL注入靶场sqli通关实战(附靶场安装包)
查看>>
MYSQL数据库下载安装(Windows版本)
查看>>
MySQL数据库与Informix:能否创建同名表?
查看>>
mysql数据库中的数据如何加密呢?mysql8.0自带新特性
查看>>