注意:如果电脑是单核单线程的,这么做是没有意义的. 这里直接贴一下主要代码 using System; using System.Collections.Generic; using System.Text; using System.Threading; using System.Data; namespace ThreadTest { class Moultithreading { //创建2个线程 Thread ThreadOne = new Thread(new ThreadStart(
使用多线程同时执行多个函数 import time import os import threading def open_calc(): with open('test.txt', 'r') as f: for line in f.readlines(): while 'hello' in line: os.system("calc.exe") # 如果字符串已经出现并已经执行命令,则终止程序,否则会一直执行命令 return # 等for循环判断完没有标识后再休眠重新调用该函数 p