-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
bf91bcd
commit 296eb50
Showing
4 changed files
with
50 additions
and
58 deletions.
There are no files selected for viewing
50 changes: 50 additions & 0 deletions
50
docs/2024-jaro/java-1-online/_posts/2024-03-19-lekce-10.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
--- | ||
title: Lekce 10 | ||
--- | ||
# Lekce 10 – Výjimky | ||
|
||
Repository s příklady k lekci: [j1-lekce10](https://github.com/FilipJirsak-Czechitas/j1-lekce10) | ||
|
||
## Osnova | ||
* výjimky (exceptions) | ||
* klíčové slovo `throws` | ||
* zachytávání výjimek | ||
|
||
```java | ||
try { | ||
// kód, ve kterém může vypadnout výjimka | ||
} catch (IOException e) { | ||
// zachycení výjimek typu IOException | ||
} catch (Exception e) { | ||
// zachycení ostatních výjimek typu Exception | ||
} | ||
``` | ||
|
||
```java | ||
try { | ||
// kód, ve kterém může vypadnout výjimka | ||
} finally { | ||
// kód který se provede vždy – ať blok try skončil výjimkou či normálně | ||
} | ||
``` | ||
|
||
```java | ||
try (InputStream inputStream = Files.newInputStream(path)) { | ||
// kód, ve kterém může vypadnout výjimka | ||
} | ||
// zdroj (resource) se automaticky uzavře | ||
``` | ||
|
||
## Dokumentace | ||
* Předek všech výjimek: [java.lang.Throwable](https://docs.oracle.com/en/java/javase/21/docs/api/java.base/java/lang/Throwable.html) | ||
* Předek všech kontrolovaných výjimek: [java.lang.Exception](https://docs.oracle.com/en/java/javase/21/docs/api/java.base/java/lang/Exception.html) | ||
* Předek všech běhových (nekontrolovaných) výjimek: [java.lang.RuntimeException](https://docs.oracle.com/en/java/javase/21/docs/api/java.base/java/lang/RuntimeException.html) | ||
* Předek všech chyb: [java.lang.Error](https://docs.oracle.com/en/java/javase/21/docs/api/java.base/java/lang/Error.html) | ||
|
||
## Cvičení | ||
- Forkni a naklonuj si repository [j1-lekce10](https://github.com/FilipJirsak-Czechitas/j1-lekce10). | ||
- Vyzkoušej, že ti jde aplikace spustit. | ||
|
||
## Úkol | ||
|
||
Z této lekce je [7. domácí úkol](ukol-7.html). |
This file was deleted.
Oops, something went wrong.
File renamed without changes.
Binary file not shown.