一段比较经典的多线程学习代码。 1、用到了多线程的同步问题。 如果有兴趣的请仔细阅读下面的代码。注意其中代码段的顺序,思考一下,这些代码的顺序能否互相调换,为什么?这应该对学习很有帮助的。为了演示,让所有的线程都Sleep了一段时间。 using System.Net; namespace Webb.Study static void ThreadCallBack() public static void Main(String[] args) 2、CallBack函数中这两句能否互换?为什么?会有什么不同的结果? 3、主函数能否写成这样?为什么?会有什么不同的结果? 仅做学习讨论。
2、用到了多线程的顺序问题。
using System;
using System.IO;
using System.Text;
using System.Threading;
using System.Diagnostics;
{
class TestThread
{
static Mutex m_Mutex = new Mutex();
static Thread[] m_testThreads = new Thread[10];
static int m_threadIndex = 0;
{
TestThread.m_Mutex.WaitOne();
int m_index = m_threadIndex;
TestThread.m_Mutex.ReleaseMutex();
Console.WriteLine(“Thread {0} start.”,m_index);
for(int i=0;i<=10;i++)
{
TestThread.m_Mutex.WaitOne();
Console.WriteLine(“Thread {0}: is running. {1}”,m_index,i);
TestThread.m_Mutex.ReleaseMutex();
Thread.Sleep(100);
}
Console.WriteLine(“Thread {0} end.”,m_index);
}
{
Console.WriteLine(“Main thread start.”);
for(int i=0;i<TestThread.m_testThreads.Length;i++)
{
TestThread.m_threadIndex = i;
TestThread.m_testThreads[i] = new Thread(new ThreadStart(ThreadCallBack));
TestThread.m_testThreads[i].Start();
Thread.Sleep(100);
}
for(int i=0;i<TestThread.m_testThreads.Length;i++)
{
TestThread.m_testThreads[i].Join();
}
Console.WriteLine(“Main thread exit.”);
}
}
}
1、主函数中这两句能否互换?为什么?
TestThread.m_testThreads[i].Start();
Thread.Sleep(100);
TestThread.m_Mutex.ReleaseMutex();
Thread.Sleep(100);
public static void Main(String[] args)
{
Console.WriteLine(“Main thread start.”);
for(int i=0;i<TestThread.m_testThreads.Length;i++)
{
TestThread.m_threadIndex = i;
TestThread.m_testThreads[i] = new Thread(new ThreadStart(ThreadCallBack));
TestThread.m_testThreads[i].Start();
TestThread.m_testThreads[i].Join();
Thread.Sleep(100);
}
Console.WriteLine(“Main thread exit.”);
}
4、这几句的作用是什么?那么程序中还存在什么样的问题?应该做怎样的修改?
TestThread.m_Mutex.WaitOne();
int m_index = m_threadIndex;
TestThread.m_Mutex.ReleaseMutex();
一段比较经典的多线程学习代码_asp.net技巧
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com 特别注意:本站所有转载文章言论不代表本站观点! 本站所提供的图片等素材,版权归原作者所有,如需使用,请与原作者联系。未经允许不得转载:IDC资讯中心 » 一段比较经典的多线程学习代码_asp.net技巧
相关推荐
-      对.net framework 反射的反思_asp.net技巧
-      .net3.5和vs2008中的asp.net ajax_asp.net技巧
-      使用asp.net ajax框架扩展html map控件_asp.net技巧
-      asp.net应用程序资源访问安全模型_asp.net技巧
-      photoshop初学者轻松绘制螺旋漩涡特效_photoshop教程
-      photoshop通道结合图层模式抠狗尾巴草_photoshop教程
-      web.config详解+asp.net优化_asp.net技巧
-      asp.net中多彩下拉框的实现_asp.net技巧