摘要: using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading;namespace ConsoleApplication1{ public class Program { static void Main(string[] args) { SyncStack ss = new SyncStack(); Producer p = new Producer(ss); Consumer c = new Consumer(ss); new Thread(p. 阅读全文
posted @ 2013-12-10 10:33 花式炒饭 阅读(833) 评论(0) 推荐(0) 编辑