-4

我创建的对象有问题,然后在函数中使用。

class environnement:
    def __init__(self, n, dic={}, listr=[], listf=[]):
        self.taille=n
        self.reg=dict(dic)
        self.raccess=listr
        self.faccess=listf

首先我在我的函数中创建一个环境compilProgram,然后我使用 compilInstruction这个环境:

def compilProgram(fichierSortie, nbrRegDispo, AST):
    DICOFUN={}
    for elt in AST.children:
        if elt.type=='fonctionDef':
            DICOFUN[elt.leaf]=elt.children
            continue
        else :
            pass
    env=environnement(nbrRegDispo)
    print(type(env))
    compteurLabel=0
    for elt in AST.children:
        if elt.type!='fonctionDef':
            (env, compteurLabel)=compilInstruction(env, fichierSortie, elt, compteurLabel)

打印compilProgramenv在我给它之前检查什么compilInstruction(因为我有问题)。

def compilInstruction(env, fichierSortie, instruction,compteurLabel):
    print(type(env))
    envInterne=environnement(env.taille, env.reg, env.raccess, env.faccess)
    ...

我尝试了许多其他方式来复制env,但问题似乎不是来自它。这是我尝试compilProgram使用属性参数时得到的结果:

<class 'Environnement.environnement'> (this is the print from compilProgram)
<class 'Environnement.environnement'> (this is the print from compilInstruction)
<class 'NoneType'> (this again comes from the print in compilInstruction)
...
AttributeError: 'NoneType' object has no attribute 'taille'

为什么打印compilInstruction运行两次,为什么env两次运行之间消失?

4

2 回答 2

3

您有两个打印语句,它解释了两次打印。

您正在env用第一次调用该compilInstruction函数的返回覆盖。因此,该函数返回一个None值作为它返回的元组的第一个元素。

于 2012-06-26T16:17:03.467 回答
1

compilInstruction不止一次拨打电话:

for elt in AST.children:
    if elt.type!='fonctionDef':
        (env, compteurLabel)=compilInstruction(env, fichierSortie, elt, compteurLabel)

您在 AST.children 中有多个 elt 不是“fonctionDef”(错字??),因此您compilInstruction不止一次调用。这就是为什么您可以从中获得不止一张印刷品的原因。compilInstruction 的返回值被分配给envand compteurLabel,因此env被 None 覆盖。

于 2012-06-26T16:36:32.777 回答