博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
python 类中staticmethod,classmethod,普通方法
阅读量:6124 次
发布时间:2019-06-21

本文共 629 字,大约阅读时间需要 2 分钟。

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()

输出结果:

转载地址:http://mifua.baihongyu.com/

你可能感兴趣的文章
php小知识
查看>>
Windows下安装、运行Lua
查看>>
Nginx 反向代理、负载均衡、页面缓存、URL重写及读写分离详解(二)
查看>>
初识中间件之消息队列
查看>>
MyBatis学习总结(三)——优化MyBatis配置文件中的配置
查看>>
Spring常用注解
查看>>
我的友情链接
查看>>
PCS子层有什么用?
查看>>
查看端口,关闭端口
查看>>
代码托管平台简介
查看>>
linux:yum和apt-get的区别
查看>>
Sentinel 1.5.0 正式发布,引入 Reactive 支持
查看>>
如何对网站进行归档
查看>>
数据库之MySQL
查看>>
2019/1/15 批量删除数据库相关数据
查看>>
数据类型的一些方法
查看>>
Mindjet MindManager 2019使用教程:
查看>>
游戏设计的基本构成要素有哪些?
查看>>
详解 CSS 绝对定位
查看>>
AOP
查看>>