Program.cs 7.9 KB

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