winform学习之----进程和线程

Posted 寒夜美美

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了winform学习之----进程和线程相关的知识,希望对你有一定的参考价值。

            Process[] pros = Process.GetProcesses();//获取多个进程
            foreach(var item in pros)
            {
                item.Kill();
                Console.Write(item);
            }

            Process.Start("calc");//打开计算器

            ProcessStartInfo psi = new ProcessStartInfo("@...");
            Process p = new Process();
            p.StartInfo = psi;
            p.Start();

           Thread th = new Thread(test);//开启线程
            th.Start();
            th.Abort();
            th.Start();

            if(th!=null)
            {
                th.Abort();//终止线程
            }

          //在.net下,不允许跨线程的访问处理办法:Control.CheckForIllegalCrossThreadCalls = false;

以上是关于winform学习之----进程和线程的主要内容,如果未能解决你的问题,请参考以下文章

winform学习之----进程和线程

Java学习之多线程

python学习之进程线程学习二

java线程学习之Master-Worker模式

python学习之进程线程学习一

(笔记)Linux内核学习之进程