创建python子类问题
我在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
问题是您没有引用您导入的内容。
The problem is that you're not referring to what you've imported.