代码拉取完成,页面将自动刷新
"""
import threading
import time
# 定义一个函数,模拟线程的工作
def worker():
while True:
print("Worker is running")
time.sleep(1) # 线程休眠1秒钟
# 创建线程对象
t = threading.Thread(target=worker)
# 启动线程
t.start()
# 等待5秒钟,然后停止线程
time.sleep(5)
t.start()
"""
import time, threading
import random
# 假定这是你的银行存款:
balance = 0
def change_it(n):
# 先存后取,结果应该为0:
global balance
balance = balance + n
balance = balance - n
def run_thread(n):
for i in range(10):
change_it(n)
t1 = threading.Thread(target=run_thread, args=(5,))
t2 = threading.Thread(target=run_thread, args=(8,))
t1.start()
t2.start()
t1.join()
t2.join()
print(balance)
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。