首页 > 代码库 > python 类中staticmethod,classmethod,普通方法
python 类中staticmethod,classmethod,普通方法
1.staticmethod:静态方法
和全局函数类似,但是通过类和对象调用。
2.classmethod:类方法
和类相关的方法,第一个参数是class对象(不是实例对象)。
在python中class也是一个真实存在于内存中的对象,不同于其他语言只存在于编译期间。
3.普通方法
和实例相关的方法,通过类实例调用。
4.代码示例
#coding:utf-8‘‘‘Created on 2015年5月29日@author: canx‘‘‘class Person: def __init__(self): print "init" @staticmethod def sayHello(hello): print "sayHell %s"%(hello) @classmethod def introduce(cls,hello): print "introduce %s"%(hello) def hello(self,hello): print "hello %s"%(hello)def main(): Person.sayHello("test") Person.introduce("test") p=Person() p.hello("test")if __name__==‘__main__‘: main()
输出结果:
python 类中staticmethod,classmethod,普通方法
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。