Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在为在线课程扩展一些代码。有一堆抽象方法定义如下:
def aMethod(self): abstract
代码执行正确,但 PyDev 报告以下错误:
Undefined variable: abstract
每次遇到抽象词时都会这样做。这里发生了什么?
我认为这里发生的事情是原始开发人员通过尝试引用名为 的未定义符号将抽象方法硬塞到语言中abstract,如果调用该符号而不被覆盖,将导致运行时错误。
abstract