|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
Java欺骗了我们那么多年,如今的多核时代,我认为它气数已尽!多线程感到用C#举行开辟就是快
usingSystem;
usingSystem.Threading;
namespaceConsoleApplication1
{
///<summary>
///Class1的择要申明。
///</summary>
classClass1
{
///<summary>
///使用程序的主出口点。
///</summary>
[STAThread]
staticvoidMain(string[]args)
{
//
//TODO:在此处增加代码以启动使用程序
//
Threadthread1=newThread(newThreadStart(Method1));
Threadthread2=newThread(newThreadStart(Method2));
thread1.Start();
thread2.Start();
}
publicstaticvoidMethod1()
{
while(true)
{
Console.WriteLine("thisisthread:1");
Thread.Sleep(1000);
}
}
publicstaticvoidMethod2()
{
while(true)
{
Console.WriteLine("thisisthread:2");
Thread.Sleep(1520);
}
}
}
}
也不知道,我同学昨天说数据挖掘很好。 |
|