python类方法与对象方法学习

时间:2023-12-05 16:47:02
 class Test_Demo:
TEST = 'test_value' def __init__(self,name,age):
self.name = name
self.age = age
#static method
@staticmethod
def test_static():
return Test_Demo.TEST
#特性
@property
def test_property(self):
return self.name+':'+str(self.age)
#类方法
@classmethod
def test_class(self):
return self.TEST if __name__ == '__main__':
test_demo = Test_Demo('zj',)
#print(test_demo.name)
print(Test_Demo.test_static())
print(test_demo.test_property)
print(test_demo.test_class())

输出结果:

python类方法与对象方法学习

注:与php不同的是:

类方法和静态方法可以访问类的静态变量(类变量,TEST),但都不能访问实例变量(即name,age)

如果访问了就会报错:

python类方法与对象方法学习