创建python子类问题

发布于 2024-12-07 13:28:53 字数 526 浏览 10 评论 0原文

我在 Python 3.1x 中的类继承方面遇到了一些问题,希望能得到一些帮助。我有一个名为 ClassA 的类,我正在尝试创建另一个名为 ClassB 的类,该类继承自 ClassA。这是我编写的代码:

from myfile import ClassA

class ClassB(ClassA):
    def __init__(self):
        super(ClassB, self).__init__()

当我尝试创建 ClassB 的实例时,我收到此错误:

>>> x = ClassB()
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
NameError: name 'ClassB' is not defined

这是我的问题吗?

I'm having some trouble with class inheritance in Python 3.1x that I am hoping to get some help with. I have a class called ClassA and I am trying to create another class called ClassB that inherits from ClassA. Here is the code I've written:

from myfile import ClassA

class ClassB(ClassA):
    def __init__(self):
        super(ClassB, self).__init__()

When I try to create an instance of ClassB I get this error:

>>> x = ClassB()
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
NameError: name 'ClassB' is not defined

Which is my problem?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

好久不见√ 2024-12-14 13:28:53

问题是您没有引用您导入的内容

>>> import SomeModule
>>> x = SomeModule.ClassB()

The problem is that you're not referring to what you've imported.

>>> import SomeModule
>>> x = SomeModule.ClassB()
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文