0

我正在学习python。当谈到官方库中的集合模块时,我发现了 NamedTuple 的代码片段,例如:

for i, name in enumerate(field_names):
    template += "        %s = _property(_itemgetter(%d), doc='Alias for field number %d')\n" % (name, i, i)

它是 NamedTuple 生成的代码的一部分。生成的代码如下:

name = property(itemgetter(0), doc='Alias for field number 0')
age = property(itemgetter(1), doc='Alias for field number 1')

这是我的问题:

Itemgetter(0) 是一个需要对象作为参数的函数。但是属性不会将任何参数传递给 itemgetter。那么这是如何工作的呢?

谢谢!

这是使用该属性的全部代码:

class Person(tuple):
    'Person(name, age)' 

    __slots__ = () 

    _fields = ('name', 'age') 

    def __new__(_cls, name, age):
        'Create new instance of Person(name, age)'
        print sys._getframe().f_code.co_name

        return _tuple.__new__(_cls, (name, age)) 

    @classmethod
    def _make(cls, iterable, new=tuple.__new__, len=len):
        'Make a new Person object from a sequence or iterable'
        print sys._getframe().f_code.co_name

        result = new(cls, iterable)
        if len(result) != 2:
            raise TypeError('Expected 2 arguments, got %d' % len(result))
        return result 

    def __repr__(self):
        'Return a nicely formatted representation string'
        print sys._getframe().f_code.co_name

        return 'Person(name=%r, age=%r)' % self 

    def _asdict(self):
        'Return a new OrderedDict which maps field names to their values'
        print sys._getframe().f_code.co_name

        return OrderedDict(zip(self._fields, self)) 

    def _replace(_self, **kwds):
        'Return a new Person object replacing specified fields with new values'
        print sys._getframe().f_code.co_name

        result = _self._make(map(kwds.pop, ('name', 'age'), _self))
        if kwds:
            raise ValueError('Got unexpected field names: %r' % kwds.keys())
        return result 

    def __getnewargs__(self):
        'Return self as a plain tuple.  Used by copy and pickle.'
        print sys._getframe().f_code.co_name

        return tuple(self) 

    name = property(itemgetter(0), doc='Alias for field number 0')
    age = property(itemgetter(1), doc='Alias for field number 1')
4

1 回答 1

3

itemgetter不是一个函数,它是一个实例可调用的类(参见 FineManual)。该property实例将使用当前对象作为参数调用它(这就是属性的用途)。

让我们总结一下……假设:

point = tuple(1, 2)
getx = itemgetter(0)

传递pointgetx()将返回point[0](实际上,point.__getitem__[0]point[0]是语法糖)

现在,如果我们子类化tuple并添加一个property

class Point(tuple):
    @property
    def x(self):
        return self[0]

@decorator 语法实际上是语法糖:

class Point(tuple):
    def x(self):
        return self[0]
    x = property(fget=x)

所以函数x变成了实例的fget属性,类语句的命名空间中的名字被反弹到了这个实例上。propertyxproperty

现在让我们创建一个Point实例:

point = Point(1, 2)

那么在求值时point.x,属性查找规则会在(实际上是在)上找到“x”property对象,注意它有一个方法,并根据描述符协议将返回的结果。由于主要实现为,这将返回作为参数调用的函数的结果。爱荷华州:Pointpoint.__class____get__()Point.x.__get__(point, Point.__class__)property.__get__(obj, cls)return self.fget(obj)xpointself

point.x

相当于

Point.x.__get__(point, point.__class__)

这相当于

Point.x.fget(point)

相当于 (NB : 这里的 'x' 是指x作为fget参数传递给的函数property,而不是Point.x

x(point)

这相当于

point[0]

并且由于itemgetter(0)(point)相当于point[0],因此可以看到它是如何x = property(itemgetter(0))工作的。

于 2013-09-18T15:12:30.703 回答