Python的绑定方法

2016-05-18  本文已影响95人  上发条的树

通过类的实例调用的方法(实例方法),我们称这个方法绑定在实例上。

>>> class Person(object):
...     def foo(self):
...         print "this is bind method"
... 
>>> p = Person()
>>> p.foo()
this is bind method
上一篇下一篇

猜你喜欢

热点阅读