huangdongdong 发表于 2021-4-22 18:31:34

简单定制

    # 设置计时器(time.perf_counter() 或 time.process_time())
    def set_timer(self, timer):
      if timer == 'process_time':
            self.default_timer = t.process_time
      elif timer == 'perf_counter':
            self.default_timer = t.perf_counter
      else:
            print("输入无效,请输入 perf_counter 或 process_time")
这一段代码的作用是什么???

H原子 发表于 2021-4-22 18:31:35

设置用哪个方法计时,如果传入的是process_time字符串,就把默认的计时方法重置为t. process_time 方法(这里只传递函数名,加上括号就调用了),下面的是一样的道理
页: [1]
查看完整版本: 简单定制