通过类的实例调用的方法(实例方法),我们称这个方法绑定在实例上。
>>> class Person(object):
... def foo(self):
... print "this is bind method"
...
>>> p = Person()
>>> p.foo()
this is bind method
- 方法是类内部定义函数,该函数的第一个参数是self。
- 必须是将类实例化之后,才能通过实例调用该类的方法,调用时,在方法后面要跟括号,括号中有默认self参数,但是不用写出来。
网友评论