python 对象初始化期间属性错误

发布于 2024-12-28 14:55:37 字数 796 浏览 0 评论 0原文

蟒蛇2.6.7; Windows 7

用 Python 解决 Deitel“简单编译器”练习。存储库位于 github。编写测试套件。

module compiler.py
class SCompiler( object ) :
    RAMSIZE = 100
    # more static attributes

    def __init__( self ) :
        self.symbolTable = [ TableEntry( ) ] * SCompiler.RAMSIZE
        self.lineFlags[ -1 ] * SCompiler.RAMSIZE
        # more initializations

堆栈跟踪。

File "testCompiler.py", line 45, in <module>
tool = compiler.SCompiler( )
File "absolutePath\compiler.py", line 37, in `__init__`
self.lineFlags[ -1 ] * SCompiler.RAMSIZE
AttributeError: 'SCompiler' object has no attribute 'lineFlags'

我不确定这里有什么拼写错误。文件“compiler.py”文件进行静默编译。 TableEntry 是文件中的另一个类。谢谢你的建议。

Python 2.6.7; Windows 7

Solving Deitel 'Simple Compiler' exercise in python. Repository at github. Writing a test suite.

module compiler.py
class SCompiler( object ) :
    RAMSIZE = 100
    # more static attributes

    def __init__( self ) :
        self.symbolTable = [ TableEntry( ) ] * SCompiler.RAMSIZE
        self.lineFlags[ -1 ] * SCompiler.RAMSIZE
        # more initializations

Stack trace.

File "testCompiler.py", line 45, in <module>
tool = compiler.SCompiler( )
File "absolutePath\compiler.py", line 37, in `__init__`
self.lineFlags[ -1 ] * SCompiler.RAMSIZE
AttributeError: 'SCompiler' object has no attribute 'lineFlags'

I'm not sure what there is to misspell here. File 'compiler.py' file compiles silently. TableEntry is another class in the file. Thanks for your advice.

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

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

发布评论

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

评论(2

浪漫人生路 2025-01-04 14:55:37

您会得到 AttributeError,因为它

self.lineFlags[-1]

在知道 lineFlag 是什么之前调用:。

但从下面的行来看(来自文件 compiler.py 在您链接的存储库中):

self.smlData = [ 0 ] * SCompiler.RAMSIZE

我认为作者忘记了 =,请尝试将 : 替换

self.lineFlags[ -1 ] * SCompiler.RAMSIZE

为:

self.lineFlags = [ -1 ] * SCompiler.RAMSIZE

You get AttributeError, because it calls:

self.lineFlags[-1]

before knowing what lineFlag is.

But judging by the line below (from the file compiler.py in the repository that you linked):

self.smlData = [ 0 ] * SCompiler.RAMSIZE

I think that the author forgot an =, try to replace :

self.lineFlags[ -1 ] * SCompiler.RAMSIZE

with:

self.lineFlags = [ -1 ] * SCompiler.RAMSIZE
池予 2025-01-04 14:55:37

在尝试将其视为数组之前,您必须初始化 self.lineFlags 。

self.lineFlags = []
self.lineFlags[-1] * SCompiler.RAMSIZE

You have to initialize self.lineFlags before trying to treat it like an array.

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