gpt4 book ai didi

python:当类属性、实例属性和方法都同名时会发生什么?

转载 作者:IT老高 更新时间:2023-10-28 22:22:24 27 4
gpt4 key购买 nike

名称相同的类属性、实例属性和方法,python如何区分?

class Exam(object):

test = "class var"

def __init__(self, n):
self.test = n

def test(self):
print "method : ",self.test

test_o = Exam("Fine")

print dir(test_o)

print Exam.test
print test_o.test
test_o.test()

输出:

['__class__', '__delattr__', '__dict__', '__doc__', '__format__', '__getattribute__',    '__hash__', '__init__', '__module__', '__new__', '__reduce__', '__reduce_ex__', '__repr__', '__setattr__', '__sizeof__', '__str__', '__subclasshook__', '__weakref__', 'test']
<unbound method load.test>
Fine
Traceback (most recent call last):
File "example.py", line 32, in <module>
test_o.test()
TypeError: 'str' object is not callable

如何调用

  1. 类属性,Exam.test --> <unbound method load.test> 输出显示方法
  2. 实例属性test_o.test --> "Fine"
  3. 方法 test_o.test() --> TypeError: 'str' object is not callable

最佳答案

类属性可以通过类访问:

YourClass.clsattribute

或者通过实例(如果实例没有覆盖类属性):

instance.clsattribute

方法,如 by ecatmur in his answer 所述, 是描述符,被设置为类属性。

如果您通过实例访问方法,则实例将作为 self 参数传递给描述符。如果要从类中调用方法,则必须显式传递一个实例作为第一个参数。所以这些是等价的:

instance.method()
MyClass.method(instance)

对实例属性和方法使用相同的名称会使方法通过实例隐藏,但方法仍然可以通过类使用:

#python3
>>> class C:
... def __init__(self):
... self.a = 1
... def a(self):
... print('hello')
...
>>> C.a
<function a at 0x7f2c46ce3c88>
>>> instance = C()
>>> instance.a
1
>>> C.a(instance)
hello

结论:不要给实例属性和方法起相同的名字。我通过给出有意义的名称来避免这种情况。方法就是 Action ,所以我通常使用动词或句子来表示它们。属性是数据,所以我对它们使用名词/形容词,这样可以避免方法和属性使用相同的名称。

请注意,您根本不能拥有与方法同名的类属性,因为该方法会完全覆盖它(最后,方法只是可调用的类属性,并且会自动接收类的实例作为第一个属性)。

关于python:当类属性、实例属性和方法都同名时会发生什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12949064/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com