Skip to content

Instantly share code, notes, and snippets.

@alex-ber
Last active October 6, 2019 14:01
Show Gist options
  • Save alex-ber/5b7f24d4370057025fa0733e31197ef5 to your computer and use it in GitHub Desktop.
Save alex-ber/5b7f24d4370057025fa0733e31197ef5 to your computer and use it in GitHub Desktop.
Get enclosing class
static class Bar {
public static void main(String[] args) {
Class<?> cl=new Object(){}.getClass().getEnclosingClass();
System.out.println(cl==Bar.class); //will print true
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment