python通过点操作符和reduce遍历对象的属性的代码

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python通过点操作符和reduce遍历对象的属性的代码相关的知识,希望对你有一定的参考价值。

如下的资料是关于python通过点操作符和reduce遍历对象的属性的内容,应该能对码农们有较大用途。

class Klass(object):

    def __getattr__(self, name):
        """
        Locate the function with the dotted
        attribute.
        """
        def traverse(parent, child):
            if instance(parent, str):
                parent = getattr(self, parent)
            return getattr(parent, child)
        return reduce(traverse, name.split(‘.‘))

以上是关于python通过点操作符和reduce遍历对象的属性的代码的主要内容,如果未能解决你的问题,请参考以下文章

reduce 阶段遍历对象添加到ArrayList中的问题

018.Python迭代器以及map和reduce函数

Javascript中内建函数reduce的应用详解

JavaScript通过reduce+递归实现树的深度遍历

map,reduce,filter的总结(reduce还有点不懂,一会自己再看看)

es6 reduce方法是遍历数组吗