前提・実現したいこと
初歩的な質問で申し訳ございません。
下記のコードではなぜb関数のif文に入らないのでしょうか。
申し訳ございませんが、ご教示いただけないでしょうか。
該当のソースコード
from concurrent.futures.process import ProcessPoolExecutor import sys import time class S: def __init__(self): self.n = 0 def a(self): self.n += 1 def b (self): if self.n == 1: self.n += 1 sys.exit() def main(): ex = ProcessPoolExecutor(max_workers=2) s = S() ex.submit(s.a) while True: ex.submit(s.b) if __name__ =="__main__": main()
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
退会済みユーザー
2021/12/17 13:17
2021/12/17 14:41