Skip to content

Instantly share code, notes, and snippets.

@rctay
Created September 26, 2011 02:59
Show Gist options
  • Save rctay/1241525 to your computer and use it in GitHub Desktop.
Save rctay/1241525 to your computer and use it in GitHub Desktop.
[java] invoking instance methods with Reflection
// invoking inst.getYear(void)
inst.getClass().getMethod("getYear", void.class).invoke(t1, void.class));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment