Summerwww 发表于 2022-11-17 15:30:58

函数6的课后检测对象类型是否正确的装饰器疑问

本帖最后由 Summerwww 于 2022-11-17 15:43 编辑

def type_check(correct_type):
    def outer(func):
      def inner(arg):
            if(type(arg) == correct_type):
                return func(arg)
            else:
                return "参数类型错误!"
      return inner
   
    return outer
   
   
print("<<<--- 测试整数 --->>>")
   
@type_check(int)
def double(x):
    return x * 2
   
print(double(2))      # 这里打印结果应该是 4
print(double("2"))    # 这里打印结果应该是 “参数类型错误”
   
print("\n<<<--- 测试字符串 --->>>")
   
@type_check(str)
def upper(s):
    return s.upper()
   
print(upper('I love FishC.'))   # 这里打印结果应该是 I LOVE FISHC
print(upper(250))               # 这里打印结果应该是 “参数类型错误”




在@type_check(int) 的意思是 double = type_check(double),但是@type_check(int)中int又代表什么???一个整数类型的参数??具体传到了那个位置??double(2)里2这个实际参数传给了 outer(func)还是inner(arg)???

jackz007 发表于 2022-11-17 16:01:47

def type_check(correct_type):
    def outer(func):
      def inner(arg):
            if(type(arg) == correct_type):# 在本例中,correct_type 在调用 double() 时是 int,在调用 upper() 时是 str
                return func(arg)            # 如果参数符合类型要求,返回对被装饰函数 double(args) 或 upper(args) 函数的调用结果
            else:                           # 否则,拒绝调用被装饰函数,返回参数类型错误信息
                return "参数类型错误!"   
      return inner
   
    return outer
   
   
print("<<<--- 测试整数 --->>>")
   
@type_check(int)               # 传递给 type_check(correct_type) 形参 correct_type 的实参是 int,在调用 double(x) 时,要求 type(x) == int,否则,参数类型错误
def double(x):
    return x * 2
   
print(double(2))
print(double("2"))
   
print("\n<<<--- 测试字符串 --->>>")
   
@type_check(str)               # 传递给 type_check(correct_type) 形参 correct_type 的实参是 str,在调用 upper(s) 时,要求 type(s) == str,否则,参数类型错误
def upper(s):
    return s.upper()
   
print(upper('I love FishC.'))
print(upper(250))

Summerwww 发表于 2022-11-18 11:36:10

我懂了,感谢大佬{:10_256:}
页: [1]
查看完整版本: 函数6的课后检测对象类型是否正确的装饰器疑问