几天前我刚开始使用 python,来自 C++ 背景。当我编写一个类,通过脚本调用它,然后更新类的接口时,我会发现一些我觉得非常不直观的行为。
成功编译后,该类似乎不再可更改。这里有一个例子:
测试模块.py:
class testClass:
def __init__(self,_A):
self.First=_A
def Method(self, X, Y):
print X
测试脚本.py:
import testModule
tm=testModuleB.testClass(10)
tm.Method(3, 4)
执行给了我
3
现在我更改以下参数列表Method
:
def Method(self, X):
,我删除了 testModule.pyc 并在我的脚本中调用
tm.Method(3)
结果,我得到
TypeError: Method() takes exactly 3 arguments (2 given)
我究竟做错了什么?为什么脚本不使用类的更新版本?我使用 Canopy 编辑器,但我在 python.exe 解释器中也看到了这种行为。
如果之前有人问过类似的问题,我们深表歉意。我没有找到与此相关的问题。