python类方法与对象方法介绍

这篇文章主要和大家一起学习python类方法与对象方法,从一个简单例子出发进行学习,感兴趣的小伙伴们可以参考一下

本文实例针对python的类方法与对象方法进行学习研究,具体内容如下

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’,23)
#print(test_demo.name)
print(test_demo.test_static())
print(test_demo.test_property)
print(test_demo.test_class())

输出结果:

以上就是本文的全部内容吗,希望对大家的学习有所帮助。

更多python类方法与对象方法介绍相关文章请关注php中文网!

Posted in 未分类

发表评论