Skip to content

Instantly share code, notes, and snippets.

@ChristophGr
Created June 29, 2011 08:32
Show Gist options
  • Select an option

  • Save ChristophGr/1053446 to your computer and use it in GitHub Desktop.

Select an option

Save ChristophGr/1053446 to your computer and use it in GitHub Desktop.
private <T> T getInstance(Class<T> clazz){
return null;
}
public void testname() {
Class<?> c = String.class;
Object instance = getInstance(c);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment