上一页 1 ··· 14 15 16 17 18 19 20 21 22 ··· 48 下一页

2016年12月2日

摘要: using System; using System.Collections.Concurrent; using System.Collections.Generic; using System.Diagnostics; using System.Threading; using System.Threading.Tasks; using System.Linq; using System.Co... 阅读全文
posted @ 2016-12-02 09:05 听哥哥的话 阅读(150) 评论(0) 推荐(0) 编辑

2016年11月29日

摘要: 版本1. using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading; using System.Threading.Tasks; namespace ClassLibrary1 { public class BaseThread... 阅读全文
posted @ 2016-11-29 23:28 听哥哥的话 阅读(318) 评论(0) 推荐(0) 编辑

2016年11月27日

摘要: using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Threading; namespace ConsoleApplication44 { class Class2 { ... 阅读全文
posted @ 2016-11-27 20:18 听哥哥的话 阅读(120) 评论(0) 推荐(0) 编辑

2016年11月26日

摘要: //如果你的应用有很多线程,这些线程大部分时间都在阻塞,那么可以通过调用ThreadPool.RegisterWaitForSingleObject来减少资源消耗。这个方法接受一个委托,它会在向等待句柄发信号时执行。当处于等待状态时,它不会浪费线程资源: static ManualResetEvent _starter = new ManualResetEvent (false); publi... 阅读全文
posted @ 2016-11-26 22:36 听哥哥的话 阅读(320) 评论(0) 推荐(0) 编辑
摘要: using System; using System.Threading; using System.Collections.Generic; class ProducerConsumerQueue : IDisposable { EventWaitHandle _wh = new AutoResetEvent (false); Thread _worker; readonly o... 阅读全文
posted @ 2016-11-26 22:05 听哥哥的话 阅读(764) 评论(0) 推荐(0) 编辑
摘要: using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading; using System.Threading.Tasks; namespace ConsoleApplication46 { class TwoWaySignaling... 阅读全文
posted @ 2016-11-26 21:38 听哥哥的话 阅读(826) 评论(0) 推荐(0) 编辑

2016年11月23日

摘要: https://blog.gkarch.com/threading/part1.html#introduction 阅读全文
posted @ 2016-11-23 10:54 听哥哥的话 阅读(92) 评论(0) 推荐(0) 编辑

2016年11月21日

摘要: using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading; namespace MyTTCon { class shareRes { public static int count = 0; ... 阅读全文
posted @ 2016-11-21 22:43 听哥哥的话 阅读(184) 评论(0) 推荐(0) 编辑

2016年11月17日

摘要: using System; using System.Collections.Generic; using System.Linq; using System.Reflection; using System.Text; using System.Threading.Tasks; namespace ConsoleApplication1 { public class EnumRema... 阅读全文
posted @ 2016-11-17 10:25 听哥哥的话 阅读(153) 评论(0) 推荐(0) 编辑

2016年11月16日

摘要: http://transcoder.baidu.com/from=1014517c/bd_page_type=1/ssid=0/uid=0/baiduid=C286FE95679B12426FD1A9717793917E/w=0_10_/t=iphone/l=3/tc?ref=www_iphone& 阅读全文
posted @ 2016-11-16 09:02 听哥哥的话 阅读(241) 评论(0) 推荐(0) 编辑
上一页 1 ··· 14 15 16 17 18 19 20 21 22 ··· 48 下一页

导航