如何修复此AttributeError

时间:2019-08-05 23:41:16

标签: python oop

我正在尝试访问类中函数内的变量并打印它。每当我尝试尝试时,我都会不断收到错误消息:AttributeError:'NoneType'对象没有属性'job_ID'。

def driver():
    q = my_queue.Queue_()
    for line in df:
        if 'received' in line:
            q.enqueue(line)
            print("Adding job " + q.new_item.job_ID + " to the queue with the timestamp: " + q.new_item.time_stamp + ".")
            print("The prority of the job is: " + q.new_item.job_priority)
            print("The job type is: " + q.new_item.job_type)
        if 'respond' in line:
            q.dequeue()
            print("Completed job " + q.current.job_ID + " in " + str(int(q.time_elapsed)) + " seconds.")
        if 'active' in line:
            q.active_jobs()
            print("Total number of jobs: " + str(len(q.temp)))
            print("Average priority: " + str(q.average))
        if 'modify' in line:
            q.modify(line)
            print("Modified job " + q.current.job_ID)

该错误来自此代码中的最后一个打印语句。

这是在此使用的类中的函数:

def modify(self, x): # need to fix printing bug
        self.current = self.head
        while self.current != None:
            if x[1] in self.current.get_data():
                self.current.data[2] = x[2]
                self.current.data[3] = x[3]
                break
                # print("Modified job " + current.job_ID)
            else:
                # print('The job details cannot be modified.')
                pass
            self.current = self.current.get_next()

1 个答案:

答案 0 :(得分:1)

您提供的modify函数中循环的退出条件为self.current == None

在最后一条条件语句中调用modify()时:

if 'modify' in line:
        q.modify(line) // here
        print("Modified job " + q.current.job_ID)

您正在使q.current的评估结果为None。因此,得到AttributeError的原因是因为q.currentNone,没有job_ID这样的属性。

要解决您的问题,必须在打印q.current之前确保None不是q.current.job_ID。除此以外,我无法提供任何帮助,因为我不知道您的程序的目的是什么。