码迷,mamicode.com
首页 > 编程语言 > 详细

python_如何定义带参数的装饰器?

时间:2017-08-05 23:35:04      阅读:297      评论:0      收藏:0      [点我收藏+]

标签:wrapper   形参和实参   执行函数   sign   ros   signature   items   参数   ret   

案例:

       实现一个装饰器,用它来检查被装饰函数的参数类型。

       需求:

    装饰器可以通过函数,指明函数参数类型,进行函数调用的时候,传入参数,检测到不匹配时,抛出异常

如何解决这个问题?

  1. 先要获取函数的签名,并且获得装饰器中参数,然后把函数签名和装饰器中参数对应绑定
  2. 把调用函数时候传入的参数和函数签名进行绑定
  3. 把实参和装饰器中定义的数据进行类型比较,不匹配抛出异常
    #!/usr/bin/python3
    
    from inspect import signature
    
    
    def check_type(*ty_args, **ty_kwargs):
        
        def out_wrapper(func):
            # 通过signature方法,获取函数形参:name, age, height
            sig = signature(func)
            # 获得装饰器传来的参数, 函数签名与之绑定,字典类型
            bind_types = sig.bind_partial(*ty_args, **ty_kwargs).arguments
            print(bind_types)
            
            def wrapper(*args, **kwargs):
                # 给执行函数中具体的实参进行和形参进行绑定,形成字典的形式
                func_type = sig.bind(*args, **kwargs).arguments.items()
                print(func_type)
                # 循环形参和实参字典的items()形式
                for name, obj in func_type:
                    if name in bind_types:
                        if not isinstance(obj, bind_types[name]):
                            raise TypeError(‘%s must be %s‘ % (name, bind_types[name]))
                func(*args, **kwargs)
            return wrapper
        return out_wrapper
    
    
    # 通过装饰器实现对函数参数进行类型检查
    @check_type(str, int, float)
    def func(name, age, height):
        print(name, age, height)
    
    
    if __name__ == ‘__main__‘:
        func(‘bei_men‘, 18, 1.75)
    

      

python_如何定义带参数的装饰器?

标签:wrapper   形参和实参   执行函数   sign   ros   signature   items   参数   ret   

原文地址:http://www.cnblogs.com/2bjiujiu/p/7291819.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!