Cet article présente principalement des informations pertinentes sur les exemples multithread Python en détail. Les amis qui en ont besoin peuvent se référer à
Exemples multithread Python en détail
Multi-threading généralement Il s'agit d'ouvrir un nouveau thread en arrière-plan pour gérer des opérations plus chronophages. Il est également très simple d'effectuer un traitement de thread en arrière-plan en Python. Aujourd'hui, j'ai trouvé une démo dans la documentation officielle.
Exemple. code :
import threading, zipfile class AsyncZip(threading.Thread): def __init__(self, infile, outfile): threading.Thread.__init__(self) self.infile = infile self.outfile = outfile def run(self): f = zipfile.ZipFile(self.outfile, 'w', zipfile.ZIP_DEFLATED) f.write(self.infile) f.close() print('Finished background zip of:', self.infile) background = AsyncZip('mydata.txt', 'myarchive.zip') background.start() print('The main program continues to run in foreground.') background.join() # Wait for the background task to finish print('Main program waited until background was done.')
Résultat :
The main program continues to run in foreground. Finished background zip of: mydata.txt Main program waited until background was done. Press any key to continue . . .
Ce qui précède est le contenu détaillé de. pour plus d'informations, suivez d'autres articles connexes sur le site Web de PHP en chinois!