将 python 的 dict 功能扩展到用户创建的类

发布于 2024-12-16 16:33:49 字数 278 浏览 1 评论 0原文

是否可以向用户创建的类添加字典功能?

IE:

class Foo(object):
    def __init__(self, x, y):
       self.x
       self.y
    def __dict__(self):
       return {'x': self.x, 'y': self.y}

f = Foo()
dict(f) <-- throws TypeError: iteration over non-sequence

Is it possible to add dict functionality to user created classes?

ie:

class Foo(object):
    def __init__(self, x, y):
       self.x
       self.y
    def __dict__(self):
       return {'x': self.x, 'y': self.y}

f = Foo()
dict(f) <-- throws TypeError: iteration over non-sequence

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

风启觞 2024-12-23 16:33:49

dict 构造函数需要映射或可迭代的键/值对作为参数,因此您的类需要实现映射协议或可迭代。

下面是如何使用后一种方法的示例:

class Foo(object):
    def __init__(self, x, y):
       self.x = x
       self.y = y
    def __iter__(self):
       return vars(self).iteritems()

示例用法:

>>> dict(Foo(2, 3))
{'x': 2, 'y': 3}

不过,我不知道这有多有用。您可以只执行

>>> vars(Foo(2, 3))
{'x': 2, 'y': 3}

以下操作,而无需在您的类上实现 __iter__() 。

The dict constructor expects either a mapping or an iterable of key/value pairs as a parameter, so your class needs to either implement the mapping protocol or be iterable.

Here's an example how to got about the latter approach:

class Foo(object):
    def __init__(self, x, y):
       self.x = x
       self.y = y
    def __iter__(self):
       return vars(self).iteritems()

Example usage:

>>> dict(Foo(2, 3))
{'x': 2, 'y': 3}

I don't know how useful this is, though. You could just do

>>> vars(Foo(2, 3))
{'x': 2, 'y': 3}

which would work without implementing __iter__() on your class.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文