Skip to content

Instantly share code, notes, and snippets.

@benjholla
Created September 26, 2018 16:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save benjholla/7e885cf6ec8884249612843bef009095 to your computer and use it in GitHub Desktop.
Save benjholla/7e885cf6ec8884249612843bef009095 to your computer and use it in GitHub Desktop.
Java Puzzle 11 (spot the bug if one exists)
public class Puzzle11 {
private Puzzle11 internalInstance = new Puzzle11();
public Puzzle11() throws Exception {
throw new Exception("I'm not coming out!");
}
public static void main(String[] args) {
try {
Puzzle11 p = new Puzzle11();
System.out.println("Surprise!");
} catch (Exception e) {
System.out.println("I told you so!");
}
}
}
@benjholla
Copy link
Author

Adapted from Java Puzzlers: Traps, Pitfalls, and Corner Cases - Puzzle #40

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment