==코드==
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
37
38
39
40
41
42
43
44
45
46
47
48
|
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Threading;
namespace ConsoleApp5
{
class Program
{
static void Main(string[] args)
{
LockThread lockthread = new LockThread();
lockthread.Run();
}
}
class LockThread
{
private int counter = 1000;
private object obj = new object();
public void Run()
{
for (int i = 0; i < 10; i++)
{
new Thread(LockCalc).Start();
}
}
private void LockCalc()
{
lock (obj)
{
this.counter++;
for (int i = 0; i < this.counter; i++)
for (int j = 0; j < this.counter; j++)
{
}
Thread.Sleep(1000);
Console.WriteLine(this.counter);
}
}
}
}
|
cs |
'C#' 카테고리의 다른 글
c# 제한된 스레드 수만 접근 가능한 세마포어 (0) | 2021.11.08 |
---|---|
c# wait과 pulse를 활용한 스레드간 신호전달 (0) | 2021.11.07 |
c# winform UI스레드, Worker스레드 (0) | 2021.11.07 |
c# winform 특정 시간마다 thread 실행하기 코드 (0) | 2021.11.07 |
c# winform timer (0) | 2021.11.07 |