■ Thread 클래스에서 스레드 메소드에 인자를 전달하는 방법을 보여준다.
▶ 예제 코드 (C#)
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 |
using System; using System.Threading; #region 카운트 표시하기 - DisplayCount(loopCount) /// <summary> /// 카운트 표시하기 /// </summary> /// <param name="loopCount">루프 카운트</param> private void DisplayCount(object loopCount) { for(int i = 1; i <= (int)loopCount; i++) { Thread.Sleep(TimeSpan.FromSeconds(0.5)); Console.WriteLine("{0} : 카운트 {1}", Thread.CurrentThread.Name, i); } } #endregion Thread thread = new Thread(new ParameterizedThreadStart(DisplayCount)); thread.Name = "thread"; thread.Start(8); |