You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Apr 22, 2021. It is now read-only.
Aufgabe 6 [Theorie]
Gegeben ist der folgende Code:
import java.io.*;
class Schriftstueck {
void lese() throws IOException {}
}
public class Zeitung extends Schriftstueck {
public static void main(String[] args) throws IOException {
new Zeitung().lese();
}
// Deklaration von lese()
}
Für welche der folgenden Deklarationen von Methode lese, jeweils eingefügt für die Zeile mit dem Kommentar „Deklaration von lese()“, lässt sich der Quelltext kompilieren?
void lese() { }
void lese() throws Exception { }
void lese(int x) throws Exception { }
void lese() throws FileNotFoundException { }
void lese() throws RuntimeException { }
Erläutern Sie jeweils in einem Satz, warum eine Kompilierung möglich bzw. nicht möglich ist.
The text was updated successfully, but these errors were encountered:
Aufgabe 6 [Theorie]
Gegeben ist der folgende Code:
Für welche der folgenden Deklarationen von Methode lese, jeweils eingefügt für die Zeile mit dem Kommentar „Deklaration von lese()“, lässt sich der Quelltext kompilieren?
void lese() { }
void lese() throws Exception { }
void lese(int x) throws Exception { }
void lese() throws FileNotFoundException { }
void lese() throws RuntimeException { }
Erläutern Sie jeweils in einem Satz, warum eine Kompilierung möglich bzw. nicht möglich ist.
The text was updated successfully, but these errors were encountered: