...
| Code Block | ||
|---|---|---|
| ||
public class StackOverflow {
public static void main(String[] args) {
try {
infiniteRun();
} catch(Throwable t) {
// Forward to handler
} finally {
// Free cache, release resources
}
// ...
}
private static void infiniteRun() {
infiniteRun();
}
}
|
...