Buscar
Estás en modo de exploración. debe iniciar sesión para usar MEMORY

   Inicia sesión para empezar


Por supuesto:

4IT101 - ZT

» Iniciar este curso
(Practica preguntas similares gratis)
Pregunta:

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();}

Autor: Karel Marčík



Respuesta:

● If (!f.exists()) { throw new IOException („Soubor „ + f.getName()+"nenalezen");}


0 / 5  (0 calificaciones)

1 answer(s) in total