lab5_multithreading.cs 8.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403
  1. Введение в многопоточность
  2. //Параллельное программирование и библиотека TPL
  3. //System.Threading.Tasks
  4. Task task = new Task(
  5. () => Console.WriteLine("Hello Task!")
  6. );
  7. task.Start();
  8. //Task.Factory.StartNew()
  9. Task task = Task.Factory.StartNew(
  10. () => Console.WriteLine("Hello Task!")
  11. );
  12. //Task.Run()
  13. Task task = Task.Run(
  14. () => Console.WriteLine("Hello Task!")
  15. );
  16. //Много кода
  17. using System;
  18. using System.Threading.Tasks;
  19. Task task1 = new Task(
  20. () => Console.WriteLine("Task1 is executed"));
  21. task1.Start();
  22. Task task2 = Task.Factory.StartNew(
  23. () => Console.WriteLine("Task2 is executed"));
  24. Task task3 = Task.Run(
  25. () => Console.WriteLine("Task3 is executed"));
  26. Console.ReadLine();
  27. //Ожидание задачи
  28. using System;
  29. using System.Threading;
  30. Task task = new Task(Display);
  31. task.Start();
  32. Console.WriteLine(
  33. "Завершение метода Main");
  34. Console.ReadLine();
  35. static void Display()
  36. {
  37. Console.WriteLine(
  38. "Начало работы метода Display");
  39. Console.WriteLine(
  40. "Завершение работы метода Display");
  41. }
  42. //Aсинхронное программирование. Асинхронные методы, async и await
  43. using System;
  44. using System.Threading;
  45. using System.Threading.Tasks;
  46. // вызов асинхронного метода
  47. FactorialAsync();
  48. Console.WriteLine(
  49. "Введите число: ");
  50. int n = Int32.Parse(Console.ReadLine());
  51. Console.WriteLine(
  52. $"Квадрат числа равен {n * n}");
  53. Console.Read();
  54. static void Factorial()
  55. {
  56. int result = 1;
  57. for(int i = 1; i <= 6; i++)
  58. {
  59. result *= i;
  60. }
  61. Thread.Sleep(8000);
  62. Console.WriteLine(
  63. $"Факториал равен {result}");
  64. }
  65. // определение асинхронного метода
  66. static async void FactorialAsync()
  67. {
  68. // выполняется синхронно
  69. Console.WriteLine(
  70. "Начало метода FactorialAsync");
  71. // выполняется асинхронно
  72. await Task.Run(()=>Factorial());
  73. Console.WriteLine(
  74. "Конец метода FactorialAsync");
  75. }
  76. using System;
  77. using System.Threading;
  78. using System.Threading.Tasks;
  79. using System.IO;
  80. ReadWriteAsync();
  81. Console.WriteLine("Некоторая работа");
  82. Console.Read();
  83. static async void ReadWriteAsync()
  84. {
  85. string s = "Hello world! One step at a time";
  86. // hello.txt - файл, который будет записываться и считываться
  87. using (StreamWriter writer = new StreamWriter("hello.txt", false))
  88. {
  89. // асинхронная запись в файл
  90. await writer.WriteLineAsync(s);
  91. }
  92. using (StreamReader reader = new StreamReader("hello.txt"))
  93. {
  94. // асинхронное чтение из файла
  95. string result = await reader.ReadToEndAsync();
  96. Console.WriteLine(result);
  97. }
  98. }
  99. //Task.Run()
  100. static void Factorial()
  101. {
  102. int result = 1;
  103. for (int i = 1; i <= 6; i++)
  104. {
  105. result *= i;
  106. }
  107. Thread.Sleep(8000);
  108. Console.WriteLine($"Факториал равен {result}");
  109. }
  110. // определение асинхронного метода
  111. static async void FactorialAsync()
  112. {
  113. // вызов асинхронной операции
  114. await Task.Run(()=>Factorial());
  115. }
  116. //Можно определить асинхронную операцию с помощью лямбда-выражения:
  117. static async void FactorialAsync()
  118. {
  119. await Task.Run(() =>
  120. {
  121. int result = 1;
  122. for (int i = 1; i <= 6; i++)
  123. {
  124. result *= i;
  125. }
  126. Thread.Sleep(8000);
  127. Console.WriteLine($"Факториал равен {result}");
  128. });
  129. }
  130. //Передача параметров в асинхронную операцию
  131. using System;
  132. using System.Threading;
  133. using System.Threading.Tasks;
  134. FactorialAsync(5);
  135. FactorialAsync(6);
  136. Console.WriteLine("Некоторая работа");
  137. Console.Read();
  138. static void Factorial(int n)
  139. {
  140. int result = 1;
  141. for (int i = 1; i <= n; i++)
  142. {
  143. result *= i;
  144. }
  145. Thread.Sleep(5000);
  146. Console.WriteLine($"Факториал равен {result}");
  147. }
  148. // определение асинхронного метода
  149. static async void FactorialAsync(int n)
  150. {
  151. await Task.Run(()=>Factorial(n));
  152. }
  153. //Получение результата из асинхронной операции
  154. using System;
  155. using System.Threading;
  156. using System.Threading.Tasks;
  157. FactorialAsync(5);
  158. FactorialAsync(6);
  159. Console.Read();
  160. static int Factorial(int n)
  161. {
  162. int result = 1;
  163. for (int i = 1; i <= n; i++)
  164. {
  165. result *= i;
  166. }
  167. return result;
  168. }
  169. // определение асинхронного метода
  170. static async void FactorialAsync(int n)
  171. {
  172. int x = await Task.Run(()=>Factorial(n));
  173. Console.WriteLine($"Факториал равен {x}");
  174. }
  175. //Void
  176. static void Factorial(int n)
  177. {
  178. int result = 1;
  179. for (int i = 1; i <= n; i++)
  180. {
  181. result *= i;
  182. }
  183. Console.WriteLine($"Факториал равен {result}");
  184. }
  185. // определение асинхронного метода
  186. static async void FactorialAsync(int n)
  187. {
  188. await Task.Run(()=>Factorial(n));
  189. }
  190. //Task
  191. using System;
  192. using System.Threading.Tasks;
  193. FactorialAsync(5);
  194. FactorialAsync(6);
  195. Console.WriteLine("Некоторая работа");
  196. Console.Read();
  197. static void Factorial(int n)
  198. {
  199. int result = 1;
  200. for (int i = 1; i <= n; i++)
  201. {
  202. result *= i;
  203. }
  204. Console.WriteLine($"Факториал равен {result}");
  205. }
  206. // определение асинхронного метода
  207. static async Task FactorialAsync(int n)
  208. {
  209. await Task.Run(()=>Factorial(n));
  210. }
  211. //Task<T>
  212. using System;
  213. using System.Threading.Tasks;
  214. int n1 = await FactorialAsync(5);
  215. int n2 = await FactorialAsync(6);
  216. Console.WriteLine($"n1={n1} n2={n2}");
  217. Console.Read();
  218. static int Factorial(int n)
  219. {
  220. int result = 1;
  221. for (int i = 1; i <= n; i++)
  222. {
  223. result *= i;
  224. }
  225. return result;
  226. }
  227. // определение асинхронного метода
  228. static async Task<int> FactorialAsync(int n)
  229. {
  230. return await Task.Run(()=>Factorial(n));
  231. }
  232. //Последовательный и параллельный вызов асинхронных операций
  233. using System;
  234. using System.Threading.Tasks;
  235. FactorialAsync();
  236. Console.Read();
  237. static void Factorial(int n)
  238. {
  239. int result = 1;
  240. for (int i = 1; i <= n; i++)
  241. {
  242. result *= i;
  243. }
  244. Console.WriteLine($"Факториал числа {n} равен {result}");
  245. }
  246. // определение асинхронного метода
  247. static async void FactorialAsync()
  248. {
  249. await Task.Run(() => Factorial(4));
  250. await Task.Run(() => Factorial(3));
  251. await Task.Run(() => Factorial(5));
  252. }
  253. //Обработка ошибок в асинхронных методах
  254. using System;
  255. using System.Threading;
  256. using System.Threading.Tasks;
  257. FactorialAsync(-4);
  258. FactorialAsync(6);
  259. Console.Read();
  260. static void Factorial(int n)
  261. {
  262. if (n < 1)
  263. throw new Exception($"{n} : число не должно быть меньше 1");
  264. int result = 1;
  265. for (int i = 1; i <= n; i++)
  266. {
  267. result *= i;
  268. }
  269. Console.WriteLine($"Факториал числа {n} равен {result}");
  270. }
  271. static async void FactorialAsync(int n)
  272. {
  273. try
  274. {
  275. await Task.Run(() => Factorial(n));
  276. }
  277. catch (Exception ex)
  278. {
  279. Console.WriteLine(ex.Message);
  280. }
  281. }
  282. //Отмена асинхронных операций
  283. using System;
  284. using System.Threading;
  285. using System.Threading.Tasks;
  286. CancellationTokenSource cts = new CancellationTokenSource();
  287. CancellationToken token = cts.Token;
  288. FactorialAsync(6, token);
  289. Thread.Sleep(3000);
  290. cts.Cancel();
  291. Console.Read();
  292. static void Factorial(int n, CancellationToken token)
  293. {
  294. int result = 1;
  295. for (int i = 1; i <= n; i++)
  296. {
  297. if (token.IsCancellationRequested)
  298. {
  299. Console.WriteLine(
  300. "Операция прервана токеном");
  301. return;
  302. }
  303. result *= i;
  304. Console.WriteLine(
  305. $"Факториал числа {i} равен {result}");
  306. Thread.Sleep(1000);
  307. }
  308. }
  309. // определение асинхронного метода
  310. static async void FactorialAsync(int n, CancellationToken token)
  311. {
  312. if(token.IsCancellationRequested)
  313. return;
  314. await Task.Run(()=>Factorial(n, token));
  315. }