欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

简单对比C#程序中的单线程与多线程设计

程序员文章站 2023-11-09 20:43:58
多线程概念 1.一个正在运行的应用程序在操作系统中被视为一个进程,进程可以包括多个线程。线程是操作系统分配处理器时间的基本单位 2.应用程序域是指进行错误隔离和安全隔离...

多线程概念

1.一个正在运行的应用程序在操作系统中被视为一个进程,进程可以包括多个线程。线程是操作系统分配处理器时间的基本单位
2.应用程序域是指进行错误隔离和安全隔离,在clr中运行,每个程序域都是单个线程启动,但该程序域中的代码可以创建附加应用程序域和附加线程
3.多线程的优点在于一个线程阻塞的时候,cup可以运行其他的线程而不需要等待,这样大大的提高了程序的执行效率。而缺点在于线程需要占用内存,线程越多占用的内存就多,多线程需要协调和管理,所以需要占用cpu时间以便跟踪线程,线程之间对共享资源访问会互相影响,所以得解决争用共享资源的问题,线程太多,也会导致控制起来更复杂,最终导致很多程序的缺陷。
4.一个进程可以创建多个线程以执行与该进程关联的部分程序代码,线程使用tread处理

c#单线程与多线程对比:

单线程:

using system; 
using system.collections.generic; 
using system.componentmodel; 
using system.data; 
using system.drawing; 
using system.linq; 
using system.text; 
using system.windows.forms; 
using system.threading; 
 
namespace stockes 
{ 
  public partial class deletgatethread : form 
  { 
    public deletgatethread() 
    { 
      initializecomponent(); 
      checkforillegalcrossthreadcalls = false;//允许跨线程调用 
    } 
    public delegate void writetxt(char chr);//定义委托 
    public writetxt writetxt;//声明委托 
    public void write(string str, writetxt writes)//使用委托 
    { 
      for (int i = 0; i < str.length; i++) 
      { 
        writes(str[i]); 
        datetime now = datetime.now; 
        while (now.addseconds(1) > datetime.now) { } 
      } 
    } 
    private void text1(char chr) 
    { 
      textbox1.appendtext(chr.tostring()); 
    } 
    public void text2(char chr) 
    { 
      textbox2.appendtext(chr.tostring()); 
    } 
    private void stratwrite() 
    { 
    
      if (checkbox1.checked) 
      { 
        textbox1.clear(); 
        groupbox4.text = "正在运行。。"; 
        groupbox2.refresh(); 
        writetxt = new writetxt(text1); 
        write(textbox3.text.trim(),writetxt); 
      } 
      if(checkbox2.checked) 
      { 
        textbox2.clear(); 
        groupbox5.text = "正在运行。。"; 
        groupbox3.refresh(); 
        writetxt = new writetxt(text2); 
        write(textbox3.text.trim(),writetxt); 
      } 
    } 
    private void button1_click(object sender, eventargs e) 
    { 
      thread tr = new thread(new threadstart(stratwrite));//创建线程 
      tr.start();//启动线程 
    } 
     
  } 
} 
 

 
多线程、并发任务: 

using system; 
using system.collections.generic; 
using system.componentmodel; 
using system.data; 
using system.drawing; 
using system.linq; 
using system.text; 
using system.windows.forms; 
using system.threading; 
 
namespace stockes 
{ 
  public partial class deletgatethread : form 
  { 
    public deletgatethread() 
    { 
      initializecomponent(); 
      checkforillegalcrossthreadcalls = false;//允许跨线程调用 
    } 
    public delegate void writetxt(char chr);//定义委托 
    public writetxt writetxt;//声明委托 
    public void write(string str, writetxt writes)//使用委托 
    { 
      for (int i = 0; i < str.length; i++) 
      { 
        writes(str[i]); 
        datetime now = datetime.now; 
        while (now.addseconds(1) > datetime.now) { } 
      } 
    } 
    private void text1(char chr) 
    { 
      textbox1.appendtext(chr.tostring()); 
    } 
    public void text2(char chr) 
    { 
      textbox2.appendtext(chr.tostring()); 
    } 
    private void stratwrite() 
    { 
      if (checkbox1.checked) 
      { 
        textbox1.clear(); 
        textbox1.refresh(); 
        groupbox4.text = "正在运行。。"; 
        groupbox2.refresh(); 
        writetxt = new writetxt(text1); 
        write(textbox3.text.trim(),writetxt); 
      } 
    } 
    private void stratwrite1() 
    { 
      if (checkbox2.checked) 
      { 
        textbox2.clear(); 
        textbox2.refresh(); 
        groupbox5.text = "正在运行。。"; 
        groupbox3.refresh(); 
        writetxt = new writetxt(text2); 
        write(textbox3.text.trim(), writetxt); 
      } 
    } 
    private void button1_click(object sender, eventargs e) 
    { 
      thread tr = new thread(new threadstart(stratwrite));//创建线程 
      tr.start();//启动线程 
      thread tr1 = new thread(new threadstart(stratwrite1));//创建第二个线程 
      tr1.start();//启动线程 
    } 
     
  } 
}