编程语言
首页 > 编程语言> > python3 使用反射的编程思想,加强代码的扩展性

python3 使用反射的编程思想,加强代码的扩展性

作者:互联网

debug的时候,没有发现函数被调用,但还是执行了函数,这是为什么?
其实这是一种类似于Java的反射的编程思想。
直接看代码:

# -*- coding:utf-8 -*-
class Father(object):
    def __init__(self):
        self._father_method_handler = self.default_method
        self._father_method = None
        print('father init...')

    def default_method(self):
        raise NotImplementedError
    
    def father_method_handler(self, val):
        self._father_method_handler = val

    def set_method(self, method):
        method = eval('self.' + method)
        """"""
        self.father_method_handler = method

    def funcA(self):
        print('funcA ...')

    def funcB(self):
        print('funcB ...')

    def funcC(self):
        print('funcC ...')

if __name__ == '__main__':
    father = Father()
    """
        其实这个就是反射的思想,我们只要修改里面的字符串,就可以调用对应的函数,我们压根就没发现谁调用了funcA函数
        这样可以动态的改变字符串而不需要改变代码
    """
    father.set_method('funcA')
    father.father_method_handler()
    father.set_method('funcB')
    father.father_method_handler()
    father.set_method('funcC')
    father.father_method_handler()

只需要在被调用的类新增函数,可以做到调用方无需修改代码。

标签:__,self,编程,father,扩展性,handler,def,method,python3
来源: https://blog.csdn.net/Xeon_CC/article/details/121444601