== 코드 ==
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
using System;
using System.Threading;
using System.Collections.Generic;
namespace TestMultiThreadLock
{
class Program
{
static CountdownEvent countEvent = new CountdownEvent(5);
static void Main(string[] args)
{
for (int i=0; i<10; i++)
{
new Thread(Vote).Start(i);
}
countEvent.Wait();
Console.WriteLine("투표자가 과반을 넘었습니다.");
Console.ReadLine();
}
static void Vote(object id)
{
if (countEvent.CurrentCount > 0)
{
countEvent.Signal();
Console.WriteLine("{0}: 투표", id);
}
else
{
Console.WriteLine("{0}: 투표 안함", id);
}
}
}
}
|
cs |
'C#' 카테고리의 다른 글
c# autoresetevent로 스레드 통제하기 (0) | 2021.11.08 |
---|---|
c# 제한된 스레드 수만 접근 가능한 세마포어 (0) | 2021.11.08 |
c# wait과 pulse를 활용한 스레드간 신호전달 (0) | 2021.11.07 |
c# thread lock 명령어로 critical section 조절하기 (0) | 2021.11.07 |
c# winform UI스레드, Worker스레드 (0) | 2021.11.07 |