できるだけ多くのスレッドを実行しようとしています。私は可能スレッドエラーが新しいスレッドを開始できません
限り多くのスレッドを実行したい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!"
:私はこの
クラスstartSleep(threading.Thread)を呼び出すと、しかし私はここに
C:\Python27\lib\threading.py _start_new_thread(self.__bootstrap,()) thread.error: can't start new thread
問題を抱えています
あなたは、このクラスを定義しましたか?なぜ私たちにあなたのコードを見せないのですか? –
エラーがある場合に備えて、 'class sleepStart'をもっと提供してください。 – ContinuousLoad
こんにちは、上記のコードを更新しました –