1 Star 0 Fork 0

Hsensor/learn_py

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
threading_test.py 785 Bytes
一键复制 编辑 原始数据 按行查看 历史
Hsensor 提交于 2024-01-10 13:25 . log
"""
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)
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/Hsensor/learn_py.git
[email protected]:Hsensor/learn_py.git
Hsensor
learn_py
learn_py
master

搜索帮助