using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading;
using System.Threading.Tasks;
namespace ConsoleApp1
{
class Program
{
//信号量Semaphore限制可同时访问某一资源或资源池的线程数。指示控制的资源初始和最大线程并发数为2
static Semaphore sema = new Semaphore(1, 1);
static int aliveCount = 0;
static object obj = new object();
static void Main(string[] args)
{
for (int i = 0; i < 10; i++)
{
var thread = new Thread(Test) { Name = $"Thread{i}" };
thread.Start();
}
var timer = new System.Timers.Timer();
timer.Interval = 1000;
timer.Elapsed += MTMShareCountry;
timer.Enabled = true;
timer.AutoReset = true;
timer.Start();
Console.ReadKey();
}
private static void MTMShareCountry(object sender, System.Timers.ElapsedEventArgs e
C# 多线程使用信号量控制处理效率,统计活动中的线程
最新推荐文章于 2023-06-06 20:49:01 发布