多线程
文章平均质量分 67
yuxuac
这个作者很懒,什么都没留下…
展开
-
c# - Task again
using System; using System.Threading.Tasks; namespace TestTask { class Program { static void Main(string[] args) { T1(); T2().Wait(); T3...原创 2020-01-11 12:01:28 · 307 阅读 · 0 评论 -
c# - Synced queue - 多线程
class Program { private static Queue SyncQueue = new Queue(); private static int ThreadCount = 10; static void Main(string[] args) { Queue folders = new原创 2015-11-16 16:32:01 · 1514 阅读 · 0 评论 -
c# - Timer中的一个问题
我们知道,System.Threading.Timer可以定时每隔一段时间执行一次任务。 不知道大家有没有想过,如果任务执行时间比较长,Interval到期之后会发生什么;是会结束当前的线程,还是会重新启动一个线程? 下面代码我们模拟一下,任务执行时间5s, Interval=2s的运行情况: using System; using System.Timers; namespace Tim原创 2017-08-17 14:27:04 · 1391 阅读 · 0 评论