0

我在 python 中创建了一个类,并__init__在类方法中调用变量。很少有初始化变量会出错。

以下是课程:

class MyRedisClass(object):

  def __init__(self):
    self.DEFAULT_PAGE_SIZE = 10
    # the line below gives an error - global name 'pool' is not defined
    # if the below line is commented, I can get the value of DEFAULT_PAGE_SIZE inside the some_function
    self.pool = redis.ConnectionPool(host='XXX.XXX.XX.XX', port=XXXX, db=0) 
    self.redis_connection = redis.Redis(connection_pool=pool)

  def some_function(self, some_data):
    print self.DEFAULT_PAGE_SIZE
    pipeline = self.redis_connection.pipeline()
    it = iter(some_data)
    for member, score in zip(it, it):
        pipeline.zadd(leaderboard_name, member, score)
    pipeline.execute()

在终端中,我创建了一个类的实例,如下所示 -

mklass = MyRedisClass()
mklass.some_function(['a', 1])

正如所指出的,我得到一个错误 -global name 'pool' is not defined

上面的类声明有什么问题?

为什么我在声明池时收到 NameError?

为了更好的类定义,我需要做一些superclassmethod吗?

4

1 回答 1

5

您访问poolself.pool不仅仅是池:

self.redis_connection = redis.Redis(connection_pool=self.pool)
于 2013-05-17T06:04:58.603 回答