- 论坛徽章:
- 0
|
本帖最后由 darkn3ss 于 2012-11-13 19:35 编辑
一般类方法需要强制添加参数self- class AyMethod:
- def __init__(self, signature = 'no_such_method'):
- self.signature = signature
- self.args = []
- self.code = []
- self.methodname = ''
- def setArg(arg):
- self.args = arg
- def setMethodName(self, name):
- self.methodname = name
- def addCode(instruction):
- self.code.append(instruction)
- def loadFromFile(filename):
- for line in open(filename):
- self.addcode(line)
- def loadFromString(string):
- for line in str(string).split('\n'):
- self.addcode(line)
- if __name__ == '__main__':
- testMethod = AyMethod()
- #testMethod.loadFromString('1')
- testMethod.setMethodName('test_method')
- print(testMethod.methodname)
复制代码 |
|