Skip to content

Instantly share code, notes, and snippets.

@zGrav
Created October 9, 2017 19:49
Show Gist options
  • Save zGrav/f7e238eaae4ee83221f8b329a15669bd to your computer and use it in GitHub Desktop.
Save zGrav/f7e238eaae4ee83221f8b329a15669bd to your computer and use it in GitHub Desktop.
public class StackTrace {
public static void main(String[] args) {
recurse(10);
}
static void recurse(int depth) {
for (StackTraceElement each: new Exception().getStackTrace()) System.out.println(each);
if (depth > 0) recurse(depth - 1);
System.out.println(depth);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment