python中文件描述符_Python中的描述符

python中文件描述符

In Python, a class that implements a get, set or delete methods for an object is called descriptors. Descriptors are the way to create attributes and add managed attributes to objects. These are used to protect the attributes from changes and any modifications. Descriptors can able to increase the readability of a program and coding skills. They can help to validate the data.

在Python中,实现对象的get,set或delete方法的类称为描述符描述符是创建属性并将托管属性添加到对象的方法。 这些用于保护属性免受更改和任何修改。 描述符可以提高程序的可读性和编码技巧。 他们可以帮助验证数据。

For example, we need only positive integer values for attribute age and string values for attribute string then descriptors provides an efficient solution.

例如 ,对于属性年龄,我们只需要正整数值,对于属性字符串,我们只需要字符串值即可,然后描述符提供了有效的解决方案。

To create a descriptor, we need __get__, __set__ and __delete__ methods.

创建描述符 ,我们需要__get__ , __set__和__delete__方法。

描述符协议 (Descriptor Protocol)

To create a descriptor, we need a descriptor protocol. By defining the following methods we can efficiently manage the attributes. They are:

创建描述符 ,我们需要一个描述符协议 。 通过定义以下方法,我们可以有效地管理属性。 他们是:

    __get__(self, obj, type=None)
__set__(self, obj, value)
__delete__(self, obj)

Here,

这里,

  • __get__ : It gets the value from an object and returns it.

    __get__ :它从一个对象获取值并返回它。

  • __set__ : It sets a value to the object and returns none.

    __set__ :它为对象设置一个值,但不返回任何值。

  • __delete__ : It deletes the value in the object and return none.

    __delete__ :删除对象中的值,不返回任何值。

These methods are normally referred to as getter and setter methods. Python doesn't provide private variables and by using descriptors we can achieve them. The descriptor with the only __get__ method is called non-data descriptors and these are created only for a class, not for an instance. A class can have other than these methods if necessary.

这些方法通常称为getter和setter方法 。 Python不提供私有变量,通过使用描述符我们可以实现它们。 具有唯一__get__方法的描述符称为非数据描述符,它们仅针对类而不是针对实例创建。 如果需要,一个类可以具有这些方法以外的其他方法。

创建和调用描述符 (Creating and calling Descriptors)

We can create a descriptor with many ways:

我们可以通过多种方式创建描述符:

  1. Create a class and override any of the __get__, __set__ and __delete__ methods and use them.

    创建一个类并重写__get__ , __set__和__delete__方法中的任何一个并使用它们。

  2. We can use the property type to create descriptor.

    我们可以使用属性类型来创建描述符。

  3. We can create descriptors by combining both property type and python decorators.

    我们可以通过组合属性类型和python装饰器来创建描述符。

Let look over each way of creating descriptor.

让我们来看看创建描述符的每种方式。

使用类创建描述符 (Creating descriptors using class)

class rk:
def __init__(self):
self.value=0
def __get__(self,ob, ty):
print ("get method")		
return self.value
def __set__(self, ob, ty):
self.value = ty
print("set method",self.value)
def __delete__(self, ob):	
print("delete method")
del self.value
class inc:
r=rk()
a=inc()
print(a.r)
a.r=3
del a.r

Output

输出量

get method
0
set method 3
delete method

In the above program, the get method will __get__ the value, the __set__ method will set the value to attribute and __delete__ method will delete the attribute.

在上面的程序中,get方法将__get__值, __set__方法将值设置为attribute, __delete__方法将删除属性。

使用属性类型创建描述符 (Creating descriptor using property type)

By using property() it is easy to create descriptors.

通过使用property() ,很容易创建描述符。

Syntax for creating a property method is:

创建属性方法的语法为:

    property(fget=None, fset=None, fdel=None, doc=None)

Here,

这里,

  • fget : Function to be used for getting an attribute value

    fget :用于获取属性值的函数

  • fset : Function to be used for setting an attribute value

    fset :用于设置属性值的函数

  • fdel : Function to be used for deleting an attribute

    fdel :用于删除属性的函数

  • doc : docstring

    doc :文档字符串

Now, the same program can be written using property type,

现在,可以使用属性类型编写相同的程序,

class rk:
def __init__(self):
self.value=0
def fget(self):
print("Get method")
return self.value
def fset(self, ty):
print ("Set method")
self.value = ty
def fdel(self):
print("delete method")
del self.value       
name = property(fget, fset, fdel, "I'm the property.")
r=rk()
r.name=1
print(r.name)
del r.name

Output

输出量

Set method
Get method
1
delete method

使用属性类型和装饰器创建描述符 (Creating descriptors using property type and decorators)

Python decorators are callable objects used to modify functions or classes. By using decorators we can modify the attribute methods.

Python装饰器是用于修改函数或类的可调用对象。 通过使用装饰器,我们可以修改属性方法。

Example to create descriptors using property type and decorators:

使用属性类型和装饰器创建描述符的示例:

class rk(object):
def __init__(self):
self.i=0
@property
def inc(self):
print("get method")
return self.i
@inc.setter
def inc(self, ty):
self.i=ty
print ("Set method",self.i)
@inc.deleter
def inc(self):
print ("delete method")
del self.i
r=rk()
print(r.inc)
r.inc=3
del r.inc

Output

输出量

get method
0
Set method 3
delete method

描述符的优点 (Advantages of descriptors)

Descriptors can increase the readability of a program and it can validate the data based on our requirements. These are low-level features and by using them we can reuse the code.

描述符可以提高程序的可读性,并且可以根据我们的要求验证数据。 这些是低级功能,通过使用它们,我们可以重用代码。

Descriptors create a way to implement private variables and manage the data. We can protect the attributes from any modifications and any updations.

描述符创建了一种实现私有变量和管理数据的方法。 我们可以保护属性免受任何修改和更新。

翻译自: https://www.includehelp.com/python/descriptor.aspx

python中文件描述符

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/380713.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

PHP的foeach用法

PHP 4 引入了 foreach 结构,用foreach可以帮助我们简单遍历数组,foreach 仅能用于数组,当用于其它数据类型或者一个未初始化的变量时会产生错误。 其用法为: foreach(数组 as 键 > 值){//循环体}当数组只有值,没有…

不为事务而事务

背景: 最近在做一个项目,需要用到两个第三方组件:北京莲塘语音组件和CMailSever前者作为语音聊天室的二次开发组件,后者用于网站的小型邮件系统二次开发组件 需求: 用户在主程序登陆后,无须再次登陆…

英语学习过程中的几点体会(1)

这几天一直在解决英语学习中的单词问题.确切的说就是积累单词量,在我们这里也不叫单词量,我给它起了个新名称 叫做:音像量 关于音像量的积累.遇到了很多问题. 比如我们找了很多资料,有国内的,国外的.视频,图片.甚至我们还自己做了两版词库.但是每个资料都有不同的问题. 每次开会…

java split 坑_java String split 踩坑记

split操作是出镜率非常高的一个方法, 但是我们使用中通常会使用两个类提供的split方法, 他们在入参类型一样, 但是效果却有一些差别, 稍不注意容易踩坑.java.lang.String#splitString提供了两个重载方法:public String[] split(String regex, int limit)public String[] split(…

c#给定编码中的字符无效_C#程序检查给定的字符串是否等于(==)运算符

c#给定编码中的字符无效Input two strings and check whether they are equal or not using C# program. 输入两个字符串,并使用C#程序检查它们是否相等。 用于字符串比较的C#代码 (C# code for string comparison) Here, we are asking for…

bugzilla学习

October 03, 2003 bugzilla学习 Bugzilla是一个bug追踪系统,用以管理bug提交、bug消除,不仅能降低同样错误的重复发生,提高开效率,而且有助于项目管理的难度。更有人打算用借助此系统,用前人的bug来教育新来的程序员&a…

vbs向指定的日志文件添加日志

向指定的文件写字符串,第三个参数指定是否删除原来的内容 Function Z_WriteLog(sFileName, sText)Dim fs, fso, sLogsLog Now() & ": " & sTextset fs CreateObject("Scripting.FileSystemObject")set fso fs.OpenTextFile(sFileNam…

php的list函数

作用&#xff1a;把索引数组中的值赋给一组变量&#xff0c;像 array() 一样&#xff0c;这不是真正的函数&#xff0c;而是语言结构。 list() 可以在单次操作内就为一组变量赋值。 <?phpheader(content-type:text/html;charsetutf-8);$personarray(DL_one,18,man);list($…

java get key_java如何获取String里面的键值对:key=valuekey=value

我一个朋友帮我写了一个&#xff0c;分享给大家&#xff1a;package com.qtay.gls.common;import java.util.Arrays;import java.util.HashMap;import java.util.Map;import java.util.Objects;public class FormDecoder {private Map parameters;public FormDecoder(String st…

python中二进制整数_Python程序查找表示二进制整数的必要位数

python中二进制整数Given an integer number and we have to find necessary bits to represent it in binary in python. 给定一个整数&#xff0c;我们必须找到必要的位以用python二进制表示它 。 To find necessary bits to represent a number – we use "bit_length…

我也终于有被认为是高手的时候了,^_^

昨天&#xff0c;马超打电话&#xff0c;让我回去给老同事讲安装的制作过程&#xff0c;说什么——他们不会。 汗......心想&#xff0c;当初谁教我啊?!还不都是自己学习摸索的&#xff0c;可现如今人家话说到这儿&#xff0c;也不好硬搪塞掉&#xff0c;去就去呗&…

php的range函数

range() 函数用于创建一个包含指定范围的元素的数组。 语法&#xff1a; range(low,high,step) “”“ low:起始值 high&#xff1a;最大值 step&#xff1a;步长&#xff0c;可写可不写&#xff0c;默认为1 ”“”<?phpheader(content-type:text/html;charsetutf-8);$arr…

单挑力扣(LeetCode)SQL题:1549. 每件商品的最新订单(难度:中等)

相信很多学习SQL的小伙伴都面临这样的困境&#xff0c;学习完书本上的SQL基础知识后&#xff0c;一方面想测试下自己的水平&#xff1b;另一方面想进一步提升&#xff0c;却不知道方法。 其实&#xff0c;对于技能型知识&#xff0c;我的观点一贯都是&#xff1a;多练习、多实…

php常量变量连接,PHP常量及变量区别原理详解

常量&#xff1a;用于储存一个不会变化也不希望变化的数据的标示符(命名规则与变量相同)定义形式&#xff1a;使用 define() 函数定义使用形式&#xff1a;define(“常量名” &#xff0c;常量值)使用 counst 语法定义使用形式&#xff1a;counst 常量名 常量值使用常量&#…

js生成随机数

Math.round(Math.random() * 10000) 父窗口弹出子窗口&#xff0c;子窗口选择值后&#xff0c;赋值到父窗口的某个控件上 父窗口代码&#xff1a; function fn_GetMarksClassModel() { var url "SelectMarksClassModel.aspx?temp" Math.round(Math.random(…

字符串最长回文子串_最长回文子串

字符串最长回文子串Problem statement: 问题陈述&#xff1a; Given a string str, find the longest palindromic substring. A substring need to be consecutive such that for any xixj i<j must be valid in the parent string too. Like "incl" is a subst…

一个人在办公室的日子

同我一起工作的那个大学同学兼同事ALICE因为个人原因,最近请假了一个星期.剩下了孤单的我在公司应付日常英文翻译书写工作。的确有点闷&#xff0c;的确有些不习惯&#xff0c;点讲&#xff0c;习惯了两个人一起吃饭聊天&#xff0c;一起拼命赶稿子&#xff0c;一起饭后散步&am…

php的array_merge函数

array_merge函数用于把一个或多个数组合并为一个数组 语法&#xff1a; array_merge(array1,array2,array3...)<?phpheader(content-type:text/html;charsetutf-8);$a1array("a">"red","b">"green");$a2array("c"…

php 命令链模式,设计模式之------命令链模式

/*****命令链模式&#xff1a;松散耦合为主题&#xff0c;发送消息&#xff0c;命令和请求通过一组命令**封装一系列操作** 一条命令被看做只执行了一个函数********/Interface ICommand{function isValue($val);}class CommonClain{private $_command;public function __const…

[Project Euler] 来做欧拉项目练习题吧: 题目017

[Project Euler] 来做欧拉项目练习题吧: 题目017周银辉题目描述:If the numbers 1 to 5 are written out in words: one, two, three, four, five, then there are 3 3 5 4 4 19 letters used in total.If all the numbers from 1 to 1000 (one thousand) inclusive were …