Question:
Který z následujících fragmentů kódu nám při následném odchycení výjimky poskytne informaci o jméně souboru, který nebyl nalezen (předpokládejte, že všechny proměnné jsou korektně deklarovány a použity): ● If (!f.exists()) { throw new IOException („Soubor „ + f.getName()+"nenalezen");} ● Exception e=new IOException („Soubor nenalezen"); if (!f.exists()){throw e;} ● if (!f.exists()) { throw „Soubor nenalezen";} ● If (!f.exists()) { throw new IOException();}
Author: Karel MarčíkAnswer:
● If (!f.exists()) { throw new IOException („Soubor „ + f.getName()+"nenalezen");}
0 / 5 (0 ratings)
1 answer(s) in total