gpt4 book ai didi

python - 线程错误无法启动新线程

转载 作者:太空宇宙 更新时间:2023-11-03 14:55:00 29 4
gpt4 key购买 nike

我正在尝试运行尽可能多的线程。但是我这里有问题

C:\Python27\lib\threading.py
_start_new_thread(self.__bootstrap, ())
thread.error: can't start new thread

当我调用这个

class startSleep(threading.Thread):

import threading
import time

class startSleep(threading.Thread):
def run(self):

current = x

# input of the treads
thread = input("Threads: ")

nload = 1

x = 0

# Threads
for x in xrange(thread):
startSleep().start()
time.sleep(0.003)
print bcolors.BLUE + "Thread " + str(x) + " started!"

我想运行尽可能多的线程

最佳答案

系统可以同时处理的线程数量是有限制的,您需要从内部关闭这些线程(通过让您线程的函数完成或 while 循环中断)或尝试通过以下方式加入线程创建这些线程的列表并加入列表项。

list_of_threads.append(example)
example.start()
for thread in list_of_threads:
thread.join()

关于python - 线程错误无法启动新线程,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45646782/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com