python __slots__使用详解

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python __slots__使用详解相关的知识,希望对你有一定的参考价值。

 1.动态添加属性

class Lang(object):
    def __init__(self,name,score):
        self.name=name
        self.score=score
    def langinfo(self):
        print %s:%s%(self.name,self.score)
lang1=Lang(Python,8.5)
lang1.rank=4
print lang1.rank

运行结果:

技术分享

2.动态添加方法

from types import MethodType
class Lang(object):
    def __init__(self,name,score):
        self.name=name
        self.score=score
    def langinfo(self):
        print %s:%s%(self.name,self.score)
lang1=Lang(Python,8.5)
def getrank(self):
    return 4
lang1.getrank=MethodType(getrank,lang1,Lang) 
print lang1.getrank()

运行结果:

技术分享

这种方法只是给实例lang1,动态添加了方法

from types import MethodType
class Lang(object):
    def __init__(self,name,score):
        self.name=name
        self.score=score
    def langinfo(self):
        print %s:%s%(self.name,self.score)
lang1=Lang(Python,8.5)
lang2=Lang(C,9)
def getrank(self):
    return 4
lang1.getrank=MethodType(getrank,lang1,Lang) 
print lang2.getrank()

运行结果:

技术分享

给类添加方法:

from types import MethodType
class Lang(object):
    def __init__(self,name,score):
        self.name=name
        self.score=score
    def langinfo(self):
        print %s:%s%(self.name,self.score)
lang1=Lang(Python,8.5)
lang2=Lang(C,9)
def getrank(self):
    return 4
Lang.getrank=MethodType(getrank,None,Lang) 
print lang2.getrank()

运行结果:

技术分享

3.限制Class属性 __slots__

#__slots__使用
from types import MethodType
class Lang(object):
    __slots__=(name,score,rank)
    def __init__(self,name,score):
        self.name=name
        self.score=score
    def langinfo(self):
        print %s:%s%(self.name,self.score)
lang1=Lang(Python,8.5)
lang1.rank=4
lang1.desc=Simple
print lang1.rank

运行结果:

技术分享

以上是关于python __slots__使用详解的主要内容,如果未能解决你的问题,请参考以下文章

python、__slots__ 和“属性是只读的”

如何使用 `__slots__` 初始化属性?

面对对象之特殊变量__slot__ | Python

Python3 __slots__

python元编程之实现定制类--使用描述符,__slots__,__new__篇

Python:__slots__()方法和@property方法