lab5_exceptions.cs 8.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484
  1. # Конспект лекции "Исключения"
  2. ## 1. Пример
  3. int x = 5;
  4. int y = x / 0;
  5. Console.WriteLine($"Результат: {y}");
  6. Console.WriteLine("Конец программы");
  7. Console.Read();
  8. ## 2. Пример
  9. try
  10. {
  11. int x = 5;
  12. int y = x / 0;
  13. Console.WriteLine($"Результат: {y}");
  14. }
  15. catch
  16. {
  17. Console.WriteLine("Возникло исключение!");
  18. }
  19. finally
  20. {
  21. Console.WriteLine("Блок finally");
  22. }
  23. Console.WriteLine("Конец программы");
  24. Console.Read();
  25. ## 3. Пример
  26. try
  27. {
  28. int x = 5;
  29. int y = x / 0;
  30. Console.WriteLine($"Результат: {y}");
  31. }
  32. catch
  33. {
  34. Console.WriteLine("Возникло исключение!");
  35. }
  36. ## 4. Пример
  37. try
  38. {
  39. int x = 5;
  40. int y = x / 0;
  41. Console.WriteLine($"Результат: {y}");
  42. }
  43. finally
  44. {
  45. Console.WriteLine("Блок finally");
  46. }
  47. ## 5. Пример
  48. Console.WriteLine("Введите число");
  49. int x = Int32.Parse(Console.ReadLine());
  50. x *= x;
  51. Console.WriteLine("Квадрат числа: " + x);
  52. Console.Read();
  53. ## 6. Пример
  54. Console.WriteLine("Введите число");
  55. int x;
  56. string input = Console.ReadLine();
  57. if (Int32.TryParse(input, out x))
  58. {
  59. x *= x;
  60. Console.WriteLine("Квадрат числа: " + x);
  61. }
  62. else
  63. {
  64. Console.WriteLine("Некорректный ввод");
  65. }
  66. Console.Read();
  67. ## 7. Пример
  68. try
  69. {
  70. int x = 5;
  71. int y = x / 0;
  72. Console.WriteLine($"Результат: {y}");
  73. }
  74. catch(DivideByZeroException)
  75. {
  76. Console.WriteLine("Возникло исключение DivideByZeroException");
  77. }
  78. ## 8. Пример
  79. int x = 1;
  80. int y = 0;
  81. try
  82. {
  83. int result = x / y;
  84. }
  85. catch(DivideByZeroException) when (y==0 && x == 0)
  86. {
  87. Console.WriteLine("y не должен быть равен 0");
  88. }
  89. catch(DivideByZeroException ex)
  90. {
  91. Console.WriteLine(ex.Message);
  92. }
  93. ## 9. Пример
  94. try
  95. {
  96. int x = 5;
  97. int y = x / 0;
  98. Console.WriteLine($"Результат: {y}");
  99. }
  100. catch (Exception ex)
  101. {
  102. Console.WriteLine($"Исключение: {ex.Message}");
  103. Console.WriteLine($"Метод: {ex.TargetSite}");
  104. Console.WriteLine($"Трассировка стека: {ex.StackTrace}");
  105. }
  106. Console.Read();
  107. ## 10. Пример
  108. try
  109. {
  110. int[] numbers = new int[4];
  111. numbers[7] = 9; // IndexOutOfRangeException
  112. int x = 5;
  113. int y = x / 0; // DivideByZeroException
  114. Console.WriteLine($"Результат: {y}");
  115. }
  116. catch (DivideByZeroException)
  117. {
  118. Console.WriteLine("Возникло исключение DivideByZeroException");
  119. }
  120. catch (IndexOutOfRangeException ex)
  121. {
  122. Console.WriteLine(ex.Message);
  123. }
  124. Console.Read();
  125. ## 11. Пример
  126. try
  127. {
  128. object obj = "you";
  129. int num = (int)obj; // InvalidCastException
  130. Console.WriteLine($"Результат: {num}");
  131. }
  132. catch (DivideByZeroException)
  133. {
  134. Console.WriteLine("Возникло исключение DivideByZeroException");
  135. }
  136. catch (IndexOutOfRangeException)
  137. {
  138. Console.WriteLine("Возникло исключение IndexOutOfRangeException");
  139. }
  140. Console.Read();
  141. ## 12. Пример
  142. try
  143. {
  144. object obj = "you";
  145. int num = (int)obj; // InvalidCastException
  146. Console.WriteLine($"Результат: {num}");
  147. }
  148. catch (DivideByZeroException)
  149. {
  150. Console.WriteLine("Возникло исключение DivideByZeroException");
  151. }
  152. catch (IndexOutOfRangeException)
  153. {
  154. Console.WriteLine("Возникло исключение IndexOutOfRangeException");
  155. }
  156. catch (Exception ex)
  157. {
  158. Console.WriteLine($"Исключение: {ex.Message}");
  159. }
  160. Console.Read();
  161. ## 13. Пример
  162. try
  163. {
  164. Person p = new Person { Name = "Tom", Age = 17 };
  165. }
  166. catch (Exception ex)
  167. {
  168. Console.WriteLine($"Ошибка: {ex.Message}");
  169. }
  170. Console.Read();
  171. class Person
  172. {
  173. private int age;
  174. public string Name { get; set; }
  175. public int Age
  176. {
  177. get { return age; }
  178. set
  179. {
  180. if (value < 18)
  181. {
  182. throw new Exception("Лицам до 18 регистрация запрещена");
  183. }
  184. else
  185. {
  186. age = value;
  187. }
  188. }
  189. }
  190. }
  191. ## 14. Пример
  192. try
  193. {
  194. Person p = new Person { Name = "Tom", Age = 17 };
  195. }
  196. catch (PersonException ex)
  197. {
  198. Console.WriteLine("Ошибка: " + ex.Message);
  199. }
  200. Console.Read();
  201. class Person
  202. {
  203. private int age;
  204. public int Age
  205. {
  206. get { return age; }
  207. set
  208. {
  209. if (value < 18)
  210. throw new PersonException("Лицам до 18 регистрация запрещена");
  211. else
  212. age = value;
  213. }
  214. }
  215. }
  216. ## 15. Пример
  217. class Person
  218. {
  219. public string Name { get; set; }
  220. private int age;
  221. public int Age
  222. {
  223. get { return age; }
  224. set
  225. {
  226. if (value < 18)
  227. throw new PersonException(
  228. "Лицам до 18 регистрация запрещена",
  229. value);
  230. else
  231. age = value;
  232. }
  233. }
  234. }
  235. try
  236. {
  237. Person p = new Person { Name = "Tom", Age = 13 };
  238. }
  239. catch (PersonException ex)
  240. {
  241. Console.WriteLine($"Ошибка: {ex.Message}");
  242. Console.WriteLine($"Некорректное значение: {ex.Value}");
  243. }
  244. Console.Read();
  245. ## 16. Пример
  246. try
  247. {
  248. TestClass.Method1();
  249. }
  250. catch (DivideByZeroException ex)
  251. {
  252. Console.WriteLine($"Catch в Main : {ex.Message}");
  253. }
  254. finally
  255. {
  256. Console.WriteLine("Блок finally в Main");
  257. }
  258. Console.WriteLine("Конец метода Main");
  259. Console.Read();
  260. class TestClass
  261. {
  262. public static void Method1()
  263. {
  264. try
  265. {
  266. Method2();
  267. }
  268. catch (IndexOutOfRangeException ex)
  269. {
  270. Console.WriteLine($"Catch в Method1 : {ex.Message}");
  271. }
  272. finally
  273. {
  274. Console.WriteLine("Блок finally в Method1");
  275. }
  276. Console.WriteLine("Конец метода Method1");
  277. }
  278. static void Method2()
  279. {
  280. try
  281. {
  282. int x = 8;
  283. int y = x / 0;
  284. }
  285. finally
  286. {
  287. Console.WriteLine("Блок finally в Method2");
  288. }
  289. Console.WriteLine("Конец метода Method2");
  290. }
  291. }
  292. ## 17. Пример
  293. try
  294. {
  295. int x = 8;
  296. int y = x / 0;
  297. }
  298. finally
  299. {
  300. Console.WriteLine("Блок finally в Method2");
  301. }
  302. ## 18. Пример
  303. try
  304. {
  305. Console.Write("Введите строку: ");
  306. string message = Console.ReadLine();
  307. if (message.Length > 6)
  308. {
  309. throw new Exception(
  310. "Длина строки больше 6 символов");
  311. }
  312. }
  313. catch (Exception e)
  314. {
  315. Console.WriteLine($"Ошибка: {e.Message}");
  316. }
  317. Console.Read();
  318. ## 19. Пример
  319. try
  320. {
  321. try
  322. {
  323. Console.Write("Введите строку: ");
  324. string message = Console.ReadLine();
  325. if (message.Length > 6)
  326. {
  327. throw new Exception(
  328. "Длина строки больше 6 символов");
  329. }
  330. }
  331. catch
  332. {
  333. Console.WriteLine("Возникло исключение");
  334. throw;
  335. }
  336. }
  337. catch (Exception ex)
  338. {
  339. Console.WriteLine(ex.Message);
  340. }
  341. ## 20. Пример
  342. double? pi = 3.14;
  343. char? letter = 'a';
  344. int m2 = 10;
  345. int? m = m2;
  346. bool? flag = null;
  347. // An array of a nullable value type:
  348. int?[] arr = new int?[10];
  349. ## 21. Пример
  350. int? a = 42;
  351. if (a is int valueOfA)
  352. {
  353. Console.WriteLine($"a is {valueOfA}");
  354. }
  355. else
  356. {
  357. Console.WriteLine("a does not have a value");
  358. }
  359. ## 22. Пример
  360. int? b = 10;
  361. if (b.HasValue)
  362. {
  363. Console.WriteLine($"b is {b.Value}");
  364. }
  365. else
  366. {
  367. Console.WriteLine("b does not have a value");
  368. }
  369. ## 23. Пример
  370. int? c = 7;
  371. if (c != null)
  372. {
  373. Console.WriteLine($"c is {c.Value}");
  374. }
  375. else
  376. {
  377. Console.WriteLine("c does not have a value");
  378. }
  379. ## 24. Пример
  380. int? a = 28;
  381. int b = a ?? -1;
  382. Console.WriteLine($"b is {b}"); // output: b is 28
  383. int? c = null;
  384. int d = c ?? -1;
  385. Console.WriteLine($"d is {d}"); // output: d is -1
  386. ## 25. Пример
  387. int a = 41;
  388. object aBoxed = a;
  389. int? aNullable = (int?)aBoxed;
  390. Console.WriteLine($"Value of aNullable: {aNullable}");
  391. object aNullableBoxed = aNullable;
  392. if (aNullableBoxed is int valueOfA)
  393. {
  394. Console.WriteLine($"aNullableBoxed is boxed int: {valueOfA}");
  395. }