recherche

Maison  >  Questions et réponses  >  le corps du texte

python如何手动实现阻塞

python 如何手动实现阻塞?

令py脚本一直阻塞直到强制退出(KeyboardInterrupt)

之前用

while True:
    pass

发现cpu占用太高了。。。

伊谢尔伦伊谢尔伦2787 Il y a quelques jours569

répondre à tous(2)je répondrai

  • PHPz

    PHPz2017-04-18 10:33:04

    1. Utilisez time.sleep

    while True:
        # 等待一年
        time.sleep(60*60*24*365)
        
    # 直接等待一百年
    time.sleep(60*60*24*365*100)

    2. Utilisez le filetage.Condition

    condition=threading.Condition()
    condition.acquire()
    condition.wait()

    2. Utilisez attendre la réponse du clavier

    Implémentation Python consistant à appuyer sur n'importe quelle touche pour continuer

    répondre
    0
  • 黄舟

    黄舟2017-04-18 10:33:04

    while True:
        time.sleep(1)

    répondre
    0
  • Annulerrépondre