| ???? Python ??? | ??11?? ?????????? | |
|---|---|---|
| ???? | ???????? | ???? |
???????????????/??????????????????????????§»?????????????????????????self??????????????????????????
#!/usr/bin/python
# Filename: method.py
class Person:
def sayHi(self):
print 'Hello, how are you?'
p = Person()
p.sayHi()
# This short example can also be written as Person().sayHi()
????????code/method.py??
$ python method.py
Hello, how are you?
?????????????self???¡Â??????sayHi????????¦Ê¦Â??????????????????????self??
| ???? | ????? | ???? |
|---|---|---|
| ?? | ??? | __init__???? |