区分函数与方法
2018-11-12 06:52:08来源:博客园 阅读 ()
一、通过print打印区分
- 函数在打印的时候,显示的是function
- 方法在打印的时候,显示的是method
def func(): pass class Animal(object): def run(self): pass print(func) # <function func at 0x0000022343CD1F28> c = Animal() print(c.run) # <bound method Animal.run of <__main__.Animal object at 0x0000022344128400>>
二、通过types模块MethodType,FunctionType判断
1. 实例方法
- 通过对象.方法名,得到的是方法类型
- 通过类名.方法名,得到的是函数类型
from types import FunctionType, MethodType class Foo(object): def run(self): pass fn = Foo() print(isinstance(fn.run, MethodType)) # True print(isinstance(Foo.run, FunctionType)) # True
2. 静态方法
- 通过对象.方法名,得到的是函数类型
- 通过类名.方法名,得到的是函数类型
from types import FunctionType, MethodType class Foo(object): @staticmethod def run(): pass fn = Foo() print(isinstance(fn.run, FunctionType)) # True print(isinstance(Foo.run, FunctionType)) # True
3. 类方法
- 通过对象.方法名,得到的是方法类型
- 通过类名.方法名,得到的是方法类型
from types import FunctionType, MethodType class Foo(object): @classmethod def run(cls): pass fn = Foo() print(isinstance(fn.run, MethodType)) # True print(isinstance(Foo.run, MethodType)) # True
标签:
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有
上一篇:Python3 图像识别(一)
- python_字符串方法 2019-08-13
- fetchone函数和fetchall函数返回值的区别 2019-08-13
- Python之装饰器笔记 2019-08-13
- python_公共方法 2019-08-13
- Python学习日记(九) 装饰器函数 2019-08-13
IDC资讯: 主机资讯 注册资讯 托管资讯 vps资讯 网站建设
网站运营: 建站经验 策划盈利 搜索优化 网站推广 免费资源
网络编程: Asp.Net编程 Asp编程 Php编程 Xml编程 Access Mssql Mysql 其它
服务器技术: Web服务器 Ftp服务器 Mail服务器 Dns服务器 安全防护
软件技巧: 其它软件 Word Excel Powerpoint Ghost Vista QQ空间 QQ FlashGet 迅雷
网页制作: FrontPages Dreamweaver Javascript css photoshop fireworks Flash