吸气剂和Setters Python2 与 Python3

发布于 2025-01-09 07:07:36 字数 1113 浏览 0 评论 0原文

我试图阅读有关 python2 和 python3 中的 getter 和 setter 的信息。开始尝试这个: https://stackoverflow.com/a/16200745/5161197

class Foo():
    def __init__(self):
        self._spam = 0

    #@property
    #def spam(self):
    #    print("in the getter: ")
    #    return self._spam

    #@spam.setter
    #def spam(self, move):
    #    print("in the setter: ")
    #    self._spam = move + self._spam

f = Foo()
f.spam = 2
print(f.spam)

当我使用 python2 运行代码

$ python2 ok.py
2

时我使用 python3 运行代码,

$ python3 ok.py
2

我很震惊地看到代码没有抛出 AttributeError,因为垃圾邮件没有在任何地方定义。请注意,属性和设置器代码已被注释掉。有人可以解释它是如何工作的吗?

下一个实验是运行链接中的实际代码(使用 getter 和 setter)。

使用python2,输出为

$ python ok.py
2

使用python3,输出为

$ python3 ok.py
in the setter:
in the getter:
2

所以,似乎属性和setter在python2中没有作用,但在python3中起作用。有人可以澄清一下吗?

我的 Mac 操作系统上的 Python 版本

$ python --version
Python 2.7.5

$ python3 --version
Python 3.6.8

I was trying to read about getters and setters in python2 and python3. Started experimenting with this: https://stackoverflow.com/a/16200745/5161197

class Foo():
    def __init__(self):
        self._spam = 0

    #@property
    #def spam(self):
    #    print("in the getter: ")
    #    return self._spam

    #@spam.setter
    #def spam(self, move):
    #    print("in the setter: ")
    #    self._spam = move + self._spam

f = Foo()
f.spam = 2
print(f.spam)

When I run the code using python2

$ python2 ok.py
2

When I run the code using python3

$ python3 ok.py
2

I was shocked to see the code not throwing AttributeError since spam is not defined anywhere. Note that property and setter code was commented out. Can someone explain how does it work?

The next experiment was to run the actual code in the link (with getter and setter).

With python2, the output was

$ python ok.py
2

With python3, the output was

$ python3 ok.py
in the setter:
in the getter:
2

So, it seems the property and setter have no role in python2 but work in python3. Can someone please clarify this?

Python version on my Mac-OS

$ python --version
Python 2.7.5

$ python3 --version
Python 3.6.8

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

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文