Python で次のコードを使用すると、バインドされていないローカル エラーが発生し続けます。
xml=[]
global currentTok
currentTok=0
def demand(s):
if tokenObjects[currentTok+1].category==s:
currentTok+=1
return tokenObjects[currentTok]
else:
raise Exception("Incorrect type")
def compileExpression():
xml.append("<expression>")
xml.append(compileTerm(currentTok))
print currentTok
while currentTok<len(tokenObjects) and tokenObjects[currentTok].symbol in op:
xml.append(tokenObjects[currentTok].printTok())
currentTok+=1
print currentTok
xml.append(compileTerm(currentTok))
xml.append("</expression>")
def compileTerm():
string="<term>"
category=tokenObjects[currentTok].category
if category=="integerConstant" or category=="stringConstant" or category=="identifier":
string+=tokenObjects[currentTok].printTok()
currentTok+=1
string+="</term>"
return string
compileExpression()
print xml
以下は、私が得る正確なエラーです:
UnboundLocalError: local variable 'currentTok' referenced before assignment.
currentTok
コードの最初の行の 1 つとして明確に初期化するので、これは私には意味がありませんglobal
。安全のために、すべてのメソッドの範囲内にあることを確認するためにラベルを付けました。