Jan 02
This post is also available in: Englisch
Was ist der Output des folgenden Codes?
String str = null;
try {
if (str.length() == 0) { System.out.print(“1″); }
System.out.print(” 2″);
} catch (Exception e) {
System.out.print(” 3″);
System.exit(0);
} finally {
System.out.print(” 4″);
}
System.out.println(” 5″);
| Antwort/ answer | |
|---|---|













