肥嘟嘟的闲言碎语

2004-05-11

python类方法定义注意事项

通常(几乎是必须)将self设置为方法定义中的第一个参数。
但是调用时可以不考虑这个。

比如

class test:

"""Test class for self"""

def __init__:
a = 0
b = 0

def selftest( self, str ):
print str

t = test()
t.selftest("abcdefg")

0 Comments:

发表评论

<< Home