1 / 8

práce s vlákny a aplikační domény v .NET Framework aplikacích

práce s vlákny a aplikační domény v .NET Framework aplikacích. Architektura technologie .NET Jan Martinovi č, FEI - Katedra Informatiky. Třída Thread. Vytváří a kontroluje vlákna, nastavuje priority a získává jejich stav Vlastnosti Priority ThreadState IsAlive IsBackground

iain
Download Presentation

práce s vlákny a aplikační domény v .NET Framework aplikacích

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. práce s vláknya aplikační domény v .NET Framework aplikacích Architektura technologie .NET Jan Martinovič, FEI - Katedra Informatiky

  2. Třída Thread • Vytváří a kontroluje vlákna, nastavuje priority a získává jejich stav • Vlastnosti • Priority • ThreadState • IsAlive • IsBackground • Statické vlastnosti • CurrentThread • Metody • Start • Sleep • Join • Interrupt • Abort • ResetAbort

  3. Delegát ThreadStart 1/2 classWork { privateint data; public int Data { get { return data; } set { data = value; } } public static voidDoWork() { Console.WriteLine("Statická metoda"); } public voidDoMoreWork() { Console.WriteLine("Instanční metoda. Data = {0}", Data); } }

  4. Delegát ThreadStart 2/2 • class Test • { • static voidMain() • { • ThreadStartthreadDelegate = newThreadStart(Work.DoWork); • ThreadnewThread = newThread(threadDelegate); • newThread.Start(); • // Od .NET 2.0 nemusíme vytvářet instanci ThreadStart • Work w = newWork(); • w.Data = 42; • threadDelegate = w.DoMoreWork; • newThread = newThread(threadDelegate); • newThread.Start(); • } • }

  5. Synchronizace zamykáním • Příkaz lock je používán pro synchronizaci vláken, které přistupují ke společným zdrojům • lock nastavuje zámek na objekt • ObjectthisLock = newObject(); • lock (thisLock) • { • // Criticalcodesection • }

  6. lock1/2 • public classLockExample • { • privatereadonlystringword; • public LockExample(stringword){this.word = word} • public void RunT0() • { • lock (Console.Out) • { • for (int i = 0; i < 10; i++) • { • Console.Write(word); • Thread.Sleep(100); • } • } • } • }

  7. lock2/2 • public classExample • { • public static voidMain() • { • LockExample le1 = new LockExample("a"); • LockExample le2 = new LockExample("b"); • Thread t1 = newThread(le1.RunT0); • Thread t2 = newThread(le2.RunT0); • t1.Start(); • t2.Start(); • } • }

  8. Třída Monitor • Statické metody • Enter • TryEnter • Exit • Wait • Pulse • PulseAll lock (obj) { … } // je kompilováno jako Monitor.Enter(obj) try { … } finally { Monitor.Exit(obj) }

More Related