Python __Slots__ (Making and Using)

回眸只為那壹抹淺笑 提交于 2019-12-12 02:06:53

问题


I don't really get making a class and using __slots__ can someone make it clearer?

For example, I'm trying to make two classes, one is empty the other isn't. I got this so far:

class Empty:
    __slots__ =()

def mkEmpty():
    return Empty()

class NonEmpty():
    __slots__ = ('one', 'two')

But I don't know how I would make "mkNonEmpty". I'm also unsure about my mkEmpty function.

Thanks

Edit:

This is what I ended up with:

class Empty:
    __slots__ =()

def mkEmpty():
    return Empty()

class NonEmpty():
    __slots__ = ('one', 'two')

def mkNonEmpty(one,two):
    p = NonEmpty()
    p.one= one
    p.two= two
    return p

回答1:


You then have to initialize your class in a traditional way. It will work like this :

class Empty:
    __slots__ =()

def mkEmpty():
    return Empty()

class NonEmpty():
    __slots__ = ('one', 'two')

    def __init__(self, one, two):
        self.one = one
        self.two = two

def mkNonEmpty(one, two):
    return NonEmpty(one, two)

Actually, the constructor functions are non-necessary and non pythonic. You can, and should use the class constructor directly, like so :

ne = NonEmpty(1, 2)

You can also use an empty constructor and set the slots directly in your application, if what you need is some kind of record

class NonEmpty():
    __slots__ = ('one', 'two')

n = NonEmpty()
n.one = 12
n.two = 15

You need to understand that slots are only necessary for performance/memory reasons. You don't need to use them, and probably shouldn't use them, except if you know that you are memory constrained. This only should be after actually stumbling into a problem though.




回答2:


Maybe the docs will help? Honestly, it doesn't sound like you're at a level where you need to be worrying about __slots__.



来源:https://stackoverflow.com/questions/14666138/python-slots-making-and-using

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!