threading Accurate awakening

import threading

 

class Data:

    def __init__(self):

        self.cur_ins = 1

        self.event = threading.Event()

 

    def thread_func(self, thread_num):

        while True:

            self.event.wait()

            if self.cur_ins == thread_num:

                print(f"Thread-{thread_num} is running.")

            else:

                print(f"Thread-{thread_num} is suspended.")

            self.event.clear()

 

if __name__ == '__main__':

    data = Data()

    threads = []

    for i in range(1, 7):

        t = threading.Thread(target=data.thread_func, args=(i,))

        t.start()

        threads.append(t)

 

    while True:

        try:

            ins = int(input("Enter a number from 1 to 6 (or 0 to exit): "))

            if ins == 0:

                break

            if 1 <= ins <= 6:

                data.cur_ins = ins

                data.event.set()

            else:

                print("Please enter a number between 1 and 6.")

        except ValueError:

            print("Please enter a valid number.")

  • 6
    点赞
  • 4
    收藏
    觉得还不错? 一键收藏
  • 2
    评论
评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值