qyh110 发表于 2022-9-4 22:05:21

函数(VI)中的关于函数执行顺序的问题

import time
def time_master(func):
      print("开始运行程序...")
      start = time.time()
      func()
      stop = time.time()
      print("结束程序运行...")
      print(f"一共耗费了 {(stop-start).2f} 秒")

def myfunc()
   time.sleep(2)
   print("Hello FishC")


为什么调用函数time_master(myfunc)之后会出下以下的运行顺序,是先运行time.master的外层
函数,再运行定义的myfunc()函数,最后运行函数参数func(),不太明白这里面的道理。
time_master(myfunc)

开始运行程序...
Hello FishC
结束程序运行...
一共耗费了2.03秒

hrpzcf 发表于 2022-9-4 22:13:31

本帖最后由 hrpzcf 于 2022-9-4 22:21 编辑

执行 time_master(myfunc)
进入 time_master 函数
执行:print("开始运行程序...")
执行:start = time.time()
执行func(),此处的 func 就是上面执行time_master 时传入的 myfunc 参数
进入 myfunc
执行:time.sleep(2)
执行:print("Hello FishC")
返回到 time_master 函数的 func() 后面
执行:stop = time.time()
执行:print("结束程序运行...")
执行:print(f"一共耗费了 {(stop-start).2f} 秒")
time_master 执行结束

wp231957 发表于 2022-9-4 22:13:54

没见你调用代码
页: [1]
查看完整版本: 函数(VI)中的关于函数执行顺序的问题