123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397 |
- /*
- using System;
- using System.Threading.Tasks;
- Task task1 = new Task(
- () => Console.WriteLine("Task1 is executed"));
- task1.Start();
- Task task2 = Task.Factory.StartNew(
- () => Console.WriteLine("Task2 is executed"));
- Task task3 = Task.Run(
- () => Console.WriteLine("Task3 is executed"));
- Console.ReadLine();
- */
- /*
- using System;
- using System.Threading;
-
- Task task = new Task(Display);
- task.Start();
-
- Console.WriteLine(
- "Завершение метода Main");
- Console.ReadLine();
- static void Display()
- {
- Console.WriteLine(
- "Начало работы метода Display");
- Console.WriteLine(
- "Завершение работы метода Display");
- }
- */
- /*
- using System;
- using System.Threading;
- using System.Threading.Tasks;
- // вызов асинхронного метода
- FactorialAsync();
- Console.WriteLine(
- "Введите число: ");
- int n = Int32.Parse(Console.ReadLine());
- Console.WriteLine(
- $"Квадрат числа равен {n * n}");
-
- Console.Read();
- static void Factorial()
- {
- int result = 1;
- for(int i = 1; i <= 6; i++)
- {
- result *= i;
- }
- Thread.Sleep(8000);
- Console.WriteLine(
- $"Факториал равен {result}");
- }
- // определение асинхронного метода
- static async void FactorialAsync()
- {
- // выполняется синхронно
- Console.WriteLine(
- "Начало метода FactorialAsync");
- // выполняется асинхронно
- await Task.Run(()=>Factorial());
- Console.WriteLine(
- "Конец метода FactorialAsync");
- }
- */
- /*
- using System;
- using System.Threading;
- using System.Threading.Tasks;
-
- FactorialAsync(5);
- FactorialAsync(6);
- Console.WriteLine("Некоторая работа");
- Console.Read();
- static void Factorial(int n)
- {
- int result = 1;
- for (int i = 1; i <= n; i++)
- {
- result *= i;
- }
- Thread.Sleep(5000);
- Console.WriteLine($"Факториал равен {result}");
- }
- // определение асинхронного метода
- static async void FactorialAsync(int n)
- {
- await Task.Run(()=>Factorial(n));
- }
- */
- /*
- using System;
- using System.Threading;
- using System.Threading.Tasks;
-
- FactorialAsync(5);
- FactorialAsync(6);
- Console.Read();
- static int Factorial(int n)
- {
- int result = 1;
- for (int i = 1; i <= n; i++)
- {
- result *= i;
- }
- return result;
- }
- // определение асинхронного метода
- static async void FactorialAsync(int n)
- {
- int x = await Task.Run(()=>Factorial(n));
- Console.WriteLine($"Факториал равен {x}");
- }
- */
- /*
- using System;
- using System.Threading.Tasks;
- FactorialAsync(5);
- FactorialAsync(6);
- Console.WriteLine("Некоторая работа");
- Console.Read();
- static void Factorial(int n)
- {
- int result = 1;
- for (int i = 1; i <= n; i++)
- {
- result *= i;
- }
- Console.WriteLine($"Факториал равен {result}");
- }
-
- // определение асинхронного метода
- static async Task FactorialAsync(int n)
- {
- await Task.Run(()=>Factorial(n));
- }
- */
- /*
- using System;
- using System.Threading.Tasks;
- int n1 = await FactorialAsync(5);
- int n2 = await FactorialAsync(6);
- Console.WriteLine($"n1={n1} n2={n2}");
- Console.Read();
- static int Factorial(int n)
- {
- int result = 1;
- for (int i = 1; i <= n; i++)
- {
- result *= i;
- }
- return result;
- }
- // определение асинхронного метода
- static async Task<int> FactorialAsync(int n)
- {
- return await Task.Run(()=>Factorial(n));
- }
- */
- /*
- using System;
- using System.Threading.Tasks;
- FactorialAsync();
- Console.Read();
- static void Factorial(int n)
- {
- int result = 1;
- for (int i = 1; i <= n; i++)
- {
- result *= i;
- }
- Console.WriteLine($"Факториал числа {n} равен {result}");
- }
- // определение асинхронного метода
- static async void FactorialAsync()
- {
- await Task.Run(() => Factorial(4));
- await Task.Run(() => Factorial(3));
- await Task.Run(() => Factorial(5));
- }
- */
- /*
- using System;
- using System.Threading.Tasks;
- FactorialAsync();
- Console.Read();
- static void Factorial(int n)
- {
- int result = 1;
- for (int i = 1; i <= n; i++)
- {
- result *= i;
- }
- Console.WriteLine($"Факториал числа {n} равен {result}");
- }
- static async void FactorialAsync()
- {
- Task t1 = Task.Run(() => Factorial(4));
- Task t2 = Task.Run(() => Factorial(3));
- Task t3 = Task.Run(() => Factorial(5));
- await Task.WhenAll(new[] { t1, t2, t3 });
- }
- */
- /*
- using System;
- using System.Threading;
- using System.Threading.Tasks;
-
- FactorialAsync(-4);
- FactorialAsync(6);
- Console.Read();
- static void Factorial(int n)
- {
- if (n < 1)
- throw new Exception($"{n} : число не должно быть меньше 1");
- int result = 1;
- for (int i = 1; i <= n; i++)
- {
- result *= i;
- }
- Console.WriteLine($"Факториал числа {n} равен {result}");
- }
-
- static async void FactorialAsync(int n)
- {
- try
- {
- await Task.Run(() => Factorial(n));
- }
- catch (Exception ex)
- {
- Console.WriteLine(ex.Message);
- }
- }
- */
- /* using System;
- using System.Threading;
- using System.Threading.Tasks;
-
- FactorialAsync(-4);
- FactorialAsync(6);
- Console.Read();
- static void Factorial(int n)
- {
- if (n < 1)
- throw new Exception($"{n} : число не должно быть меньше 1");
- int result = 1;
- for (int i = 1; i <= n; i++)
- {
- result *= i;
- }
- Console.WriteLine($"Факториал числа {n} равен {result}");
- }
- static async void FactorialAsync(int n)
- {
- Task task = null;
- try
- {
- task = Task.Run(()=>Factorial(n));
- await task;
- }
- catch (Exception ex)
- {
- Console.WriteLine(task.Exception.InnerException.Message);
- Console.WriteLine($"IsFaulted: {task.IsFaulted}");
- }
- }
- */
- /*
- using System;
- using System.Threading;
- using System.Threading.Tasks;
- await DoMultipleAsync();
- static void Factorial(int n)
- {
- if (n < 1)
- throw new Exception($"{n} : число не должно быть меньше 1");
- int result = 1;
- for (int i = 1; i <= n; i++)
- {
- result *= i;
- }
- Console.WriteLine($"Факториал числа {n} равен {result}");
- }
- static async Task DoMultipleAsync()
- {
- Task allTasks = null;
-
- try
- {
- Task t1 = Task.Run(()=>Factorial(-3));
- Task t2 = Task.Run(() => Factorial(-5));
- Task t3 = Task.Run(() => Factorial(-10));
-
- allTasks = Task.WhenAll(t1, t2, t3);
- await allTasks;
- }
- catch (Exception ex)
- {
- Console.WriteLine("Исключение: " + ex.Message);
- Console.WriteLine("IsFaulted: " + allTasks.IsFaulted);
- foreach (var inx in allTasks.Exception.InnerExceptions)
- {
- Console.WriteLine("Внутреннее исключение: " + inx.Message);
- }
- }
- }
- */
- /*
- using System;
- using System.Threading;
- using System.Threading.Tasks;
-
- CancellationTokenSource cts = new CancellationTokenSource();
- CancellationToken token = cts.Token;
- FactorialAsync(6, token);
- Thread.Sleep(3000);
- cts.Cancel();
- Console.Read();
- static void Factorial(int n, CancellationToken token)
- {
- int result = 1;
- for (int i = 1; i <= n; i++)
- {
- if (token.IsCancellationRequested)
- {
- Console.WriteLine(
- "Операция прервана токеном");
- return;
- }
- result *= i;
- Console.WriteLine(
- $"Факториал числа {i} равен {result}");
- Thread.Sleep(1000);
- }
- }
- // определение асинхронного метода
- static async void FactorialAsync(int n, CancellationToken token)
- {
- if(token.IsCancellationRequested)
- return;
- await Task.Run(()=>Factorial(n, token));
- }
- */
|