函数、方法区别

- 函数和方法?

class Foo(object):
def __init__(self):
self.name = 'alex'
def func(self):
print(self.name)

from types import FunctionType,MethodType

obj = Foo()
print(isinstance(obj.func,FunctionType)) # False
print(isinstance(obj.func,MethodType)) # True

print(isinstance(Foo.func,FunctionType)) # True
print(isinstance(Foo.func,MethodType)) # False

  


注意:
方法,无需传入self参数
函数,必须手动传入self参数

posted @ 2017-12-17 17:29  百连  阅读(143)  评论(0编辑  收藏  举报