Python NameError: 未定义类故障排除
Python 中遇到“NameError: name is not Defined”错误时,通常表明程序正在尝试使用尚未定义或导入的变量或类。在本例中,代码说明了错误:
<code class="python">s = Something() Something.out() class Something: def out(): print("it works")</code>
错误说明:
Something 的类定义位于您尝试创建某事物的新实例。这意味着当解释器到达 s = Something() 行时,类 Something 尚未定义。
解决方案:
要解决此问题,您在尝试使用类之前应该始终定义类。在这种情况下,将类定义移到创建 Something 实例的行之前:
<code class="python">class Something: def out(): print("it works") s = Something() Something.out()</code>
将 Self 传递给实例方法:
在提供的代码中, out 方法缺少 self 参数。类中的实例方法需要 self 作为第一个参数,它表示类本身的实例。要纠正此问题,您需要修改 out 方法定义以包含 self:
<code class="python">class Something: def out(self): print("it works")</code>
以上是为什么在 Python 中使用类时会出现'NameError:名称未定义”错误?的详细内容。更多信息请关注PHP中文网其他相关文章!