c#(asp.net) 多线程示例,用于同时处理多个任务

using System;using System.Collections.Generic;using System.Linq;using System.Web;using System.Web.UI;using System.Threading;using System.Web.UI.WebControls;public partial class muti_thread : System.Web.UI.Page{protected void Page_Load(object sender, EventArgs e){Thread Thread1 = new Thread(new ThreadStart(CalcSum));Thread Thread2 = new Thread(new ThreadStart(CalcGap));Thread1.Start();Thread2.Start();Thread1.Join();Thread2.Join();}//求和方法protected void CalcSum(){long sum = 0;for (long i = 0; i < 100; i++){sum += i;Response.Write(string.Format("Thread1–>i={0}:sum={1}<br/>", i, sum));Response.Flush();System.Threading.Thread.Sleep(5000);}}//求差方法protected void CalcGap(){long gap = 0;for (long i = 100; i >= 0; i–){gap = i – 1;Response.Write(string.Format("Thread2–>i={0}:gap={1}<br/>", i, gap));Response.Flush();System.Threading.Thread.Sleep(1000);}}}

,没有一种不通过蔑视、忍受和奋斗就可以征服的命运。

c#(asp.net) 多线程示例,用于同时处理多个任务

相关文章:

你感兴趣的文章:

标签云: