如何使用get/set方法?

发布于 2025-01-06 03:11:18 字数 280 浏览 0 评论 0原文

请指出我的代码中的错误。

class Foo:
    def get(self):
        return self.a

    def set(self, a):
        self.a = a

Foo.set(10)
Foo.get()

类型错误:set() 恰好需要 2 个位置参数(给定 1 个)

如何使用 __get__()/__set__()

Please point where a bug in my code.

class Foo:
    def get(self):
        return self.a

    def set(self, a):
        self.a = a

Foo.set(10)
Foo.get()

TypeError: set() takes exactly 2 positional arguments (1 given)

How to use __get__()/__set__()?

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

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

发布评论

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

评论(2

老娘不死你永远是小三 2025-01-13 03:11:18

它们是实例方法。您必须首先创建 Foo 的实例:

f = Foo()
f.set(10)
f.get()    # Returns 10

They are instance methods. You have to create an instance of Foo first:

f = Foo()
f.set(10)
f.get()    # Returns 10
一个人练习一个人 2025-01-13 03:11:18

如何使用__get__()/__set__()

如果你有Python3,就像这样。 Python2.6 中的描述符不希望对我正常工作。

Python v2.6.6

>>> class Foo(object):
...     def __get__(*args): print 'get'
...     def __set__(*args): print 'set'
...
>>> class Bar:
...     foobar = Foo()
...
>>> x = Bar()
>>> x.foobar
get
>>> x.foobar = 2
>>> x.foobar
2

Python v3.2.2

>>> class Foo(object):
...     def __get__(*args): print('get')
...     def __set__(*args): print('set')
...
>>> class Bar:
...     foobar = Foo()
...
>>> x = Bar()
>>> x.foobar
get
>>> x.foobar = 2
set
>>> x.foobar
get

How to use __get__()/__set__()?

Like this if you have Python3. Descriptors in Python2.6 doesn't want works properly for me.

Python v2.6.6

>>> class Foo(object):
...     def __get__(*args): print 'get'
...     def __set__(*args): print 'set'
...
>>> class Bar:
...     foobar = Foo()
...
>>> x = Bar()
>>> x.foobar
get
>>> x.foobar = 2
>>> x.foobar
2

Python v3.2.2

>>> class Foo(object):
...     def __get__(*args): print('get')
...     def __set__(*args): print('set')
...
>>> class Bar:
...     foobar = Foo()
...
>>> x = Bar()
>>> x.foobar
get
>>> x.foobar = 2
set
>>> x.foobar
get
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文