示例代码:
def test_fn():passclass Test(object):@staticmethoddef s_fn():pass@classmethoddef c_fn(cls):passdef my_fn(self):pass
如何判断是可调用的方法:
hasattr(test_fn, '__call__') # true
hasattr(Test.s_fn, '__call__') # true
hasattr(Test.c_fn, '__call__') # true
hasattr(Test().my_fn, '__call__') # true
# 内置函数callable也可以用于判断
callable(test_fn) # true
__call__
属性和callable
函数都无法区分出是函数还是方法(function or method)
此时可借助inspect
模块进行判断
import inspectinspect.ismethod(test_fn) # false
inspect.ismethod(Test.s_fn) # false 静态方法其实是function
inspect.ismethod(Test.c_fn) # true 类方法是method
inspect.ismethod(Test().my_fn) # trueinspect.isfunction(test_fn) # true
inspect.isfunction(Test.s_fn) # true
inspect.isfunction(Test.c_fn) # false
函数和方法的区别function
vs method
在 Python 中,方法和函数具有相似的用途,但在重要方面有所不同。
- 函数是可以从任何地方调用的独立代码块;
- 而方法则与对象或类绑定,需要调用对象或类实例。