鱼C论坛

 找回密码
 立即注册
查看: 1856|回复: 2

[已解决]线程问题,没有输出就结束了

[复制链接]
发表于 2021-6-29 12:19:18 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
为什么我的代码没有任何输出就结束了?



import _thread
import time


def print_time(threadName, delay):
    count = 0
    while count < 5:
        time.sleep(delay)
        count += 1
        print("%s: %s" % (threadName, time.ctime(time.time())))


# 创建两个线程
try:
    _thread.start_new_thread(print_time, ("Thread-1", 2,))
    _thread.start_new_thread(print_time, ("Thread-2", 4,))
except:
    print("Error: 无法启动线程")
最佳答案
2021-6-29 12:57:18

_thread 模块对于进程退出并没有进行控制,所以只要主线程结束,子线程也随之结束

所以你这里子线程需要 sleep 进行等待,而主线程整个代码执行一瞬间就执行结束了,所以你看上去没有输出就结束了

你可以在主线程后面加上一个循环 或者 sleep ,这样就可以看到子线程的运行结果,参考代码:
import _thread
import time


def print_time(threadName, delay):
    count = 0
    while count < 5:
        time.sleep(delay)
        count += 1
        print("%s: %s" % (threadName, time.ctime(time.time())))

try:
    _thread.start_new_thread(print_time, ("Thread-1", 2,))
    _thread.start_new_thread(print_time, ("Thread-2", 4,))
except:
    print("Error: 无法启动线程")

time.sleep(10)

想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2021-6-29 12:46:08 From FishC Mobile | 显示全部楼层
import threading
import time


def print_time(threadName, delay):
    count = 0
    while count < 5:
        time.sleep(delay)
        count += 1
        print("%s: %s" % (threadName, time.ctime(time.time())))


# 创建两个线程
try:
    t1 = threading.Thread(target=print_time, args=("Thread-1", 2))
    t2 = threading.Thread(target=print_time, args=("Thread-2", 4))
    t1.start()
    t2.start()
    t1.join()
    t2.join()
except:
    print("Error: 无法启动线程")
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2021-6-29 12:57:18 | 显示全部楼层    本楼为最佳答案   

_thread 模块对于进程退出并没有进行控制,所以只要主线程结束,子线程也随之结束

所以你这里子线程需要 sleep 进行等待,而主线程整个代码执行一瞬间就执行结束了,所以你看上去没有输出就结束了

你可以在主线程后面加上一个循环 或者 sleep ,这样就可以看到子线程的运行结果,参考代码:
import _thread
import time


def print_time(threadName, delay):
    count = 0
    while count < 5:
        time.sleep(delay)
        count += 1
        print("%s: %s" % (threadName, time.ctime(time.time())))

try:
    _thread.start_new_thread(print_time, ("Thread-1", 2,))
    _thread.start_new_thread(print_time, ("Thread-2", 4,))
except:
    print("Error: 无法启动线程")

time.sleep(10)

想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2025-1-14 18:16

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表