线程同步,线程安全例子
摘要:
namespace ConsoleApplication22{ class Program { static void Main(string[] args) { Thread[] ts = new Thread[30]; TestDemo td = new TestDemo(); int i; for (i = 0; i < 30; i++) { ts[i] = new Thread(td.Test1); ts[i].Start(); } while (true) { bool flag = td.Test2(); if (flag) break; } Console.ReadKey( 阅读全文
posted @ 2011-02-27 14:02 chenlulouis 阅读(1948) 评论(0) 推荐(2) 编辑