作业 046课 动动手 第一题的问题
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)) # 这里打印结果应该是 “参数类型错误”
请问各位老师: if(type(arg) == correct_type):这里的correct_type 为什么返回的是数据类型啊? 本帖最后由 isdkz 于 2023-1-12 14:18 编辑
@type_check(int)
def double(x):
相当于 double = type_check(int)(double)
从
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
中不难看出:
type_check(int) 返回的是 outer,而且 correct_type 为 int,即
type_check(int) 相当于
def outer(func):
def inner(arg):
if(type(arg) == int):
return func(arg)
else:
return "参数类型错误!"
return inner
type_check(int)(double) 就相当于 outer(double),即
def inner(arg):
if(type(arg) == int):
return double(arg)
else:
return "参数类型错误!"
通过 @type_check(int) 的修饰,其实 double 已经被替换成了上面的这个 inner 函数了
isdkz 发表于 2023-1-12 14:17
@type_check(int)
def double(x):
>>> def power(exp):
print(exp)
def exp_of(base):
print(exp,base)
return base ** exp
return exp_of
>>> power(3)(3)
3
3 3
27
>>> square = power(3)
3
>>> square(3)
3 3
27
>>>
那么这个例子里面的 exp 和 base 返回的不是数据类型呢? caeser 发表于 2023-1-12 15:55
那么这个例子里面的 exp 和 base 返回的不是数据类型呢?
上面那个 correct_type 传进去的是 int 呀,这里的 exp 和 base 传进去的 3,
这是看你传进去的参数的
页:
[1]