현재 스레드에 할당된 작업이 완료될 때까지 다른 스레드의 방해 없이 한 번에 하나의 스레드에서만 리소스를 사용할 수 있는 기술을 C#에서는 동기화라고 합니다. 실제로 멀티스레딩 프로그램에서는 필요한 시간 동안 스레드가 모든 리소스에 액세스할 수 있으며 리소스는 스레드에 의해 비동기적으로 공유 및 실행됩니다. 이는 중요한 작업이며 시스템이 중지될 수 있으므로 스레드는 동기적으로 실행되어야 합니다. 그리고 스레드의 동기화를 통해 스레드의 일관성을 유지하고 하나의 스레드가 실행되는 동안 다른 스레드가 간섭하지 않도록 할 수 있습니다.
C#Thread 동기화 구문은 다음과 같습니다.
Thread thread_name = new Thread(method_name); thread_name.Start(); thread_name.Join();
또는
Thread thread_name = new Thread(method_name); thread_name.Start(); method_name() { lock(this) { //thread_name thread is executed } }
여기서 thread_name은 스레드의 이름이고 method_name은 thread_name.Start()가 호출된 시점부터 이 스레드가 단독으로 액세스하는 메서드의 이름이며, thread_name.Join()은 다음에 의해 이 스레드가 완료될 때까지 기다립니다. 다른 모든 스레드의 실행을 중지합니다.
메서드 내의 잠금 키워드인 method_name은 현재 스레드가 완료될 때까지 다른 스레드가 해당 메서드에 액세스할 수 없도록 스레드 실행을 잠급니다.
다음은 C# 스레드 동기화의 예입니다.
join 키워드를 사용한 스레드 동기화를 보여주는 C# 프로그램
코드:
using System; using System.Threading; //a namespace called program is created namespace program { //a class called check is defined class check { //main method is called static void Main(string[] args) { //an instance of the thread class is created which operates on a method Thread firstthread = new Thread(secondfunction); //start method is used to begin the execution of the thread firstthread.Start(); //join method stops all other threads while the current thread is executing firstthread.Join(); Thread secondthread = new Thread(firstfunction); secondthread.Start(); secondthread.Join(); } private static void firstfunction(object obj) { for(inti=1;i<3;i++) { Console.WriteLine("First function is executed two times in a row because join method is called on the second thread operating on this method."); } } private static void secondfunction(object obj) { for(inti=1;i<3;i++) { Console.WriteLine("Second function is executed two times in a row because join method is called on the first thread operating on this method."); } } } }
출력:
설명: 위 프로그램에서는 program이라는 네임스페이스가 생성됩니다. 그런 다음 메인 메소드가 호출되는 check라는 클래스가 정의됩니다. 그런 다음 메서드에 대해 작동하기 위해 스레드의 인스턴스가 생성됩니다. 이 메서드는 Start() 메서드를 사용하여 시작되고 동일한 스레드에서 Join() 메서드를 사용하여 해당 메서드의 실행이 다른 스레드에 의해 중단되지 않도록 합니다. 따라서 출력은 동기적으로 행에 표시됩니다. 프로그램의 출력은 위의 스냅샷에 표시됩니다.
lock 키워드를 사용한 스레드 동기화를 보여주는 C# 프로그램
코드:
using System; using System.Threading; //a class called create is created class create { public void func() { //lock is called on this method lock (this) { for (inti = 1; i<= 2; i++) { Console.WriteLine("The thread is executing"); } } } } class check { public static void Main(string[] args) { //an instance of the create class is created create c = new create(); //an instance of the thread class is created which operates on the method in another class Thread firstthread = new Thread(c.func); firstthread.Start(); Thread secondthread = new Thread(c.func); secondthread.Start(); } }
출력:
설명: 위 프로그램에서 create를 호출하는 클래스는 lock 키워드를 사용한 메서드가 정의된 생성됩니다. 즉, 이 메서드에서 작동하는 스레드는 다음이 될 때까지 자체적으로 메서드를 잠급니다. 다른 스레드가 메서드에 액세스하는 것을 허용하지 않고 실행을 완료합니다. 이렇게 하면 스레드가 동기적으로 실행됩니다. 프로그램의 출력은 위의 스냅샷에 표시됩니다.
이 튜토리얼에서는 프로그래밍 예제와 그 출력을 통해 스레드 동기화의 정의, 구문, 작동을 통해 C#의 ThreadSynchronization 개념을 이해합니다.
C# 스레드 동기화에 대한 안내입니다. 여기에서는 C# 스레드 동기화 소개와 그 작업, 예제 및 코드 구현에 대해 설명합니다. 더 자세히 알아보려면 다른 추천 기사를 살펴보세요. –
위 내용은 C# 스레드 동기화의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!