Skip to content

Instantly share code, notes, and snippets.

@akullpp
Last active August 29, 2015 14:06
Show Gist options
  • Save akullpp/99f8ca513ca5cdda570a to your computer and use it in GitHub Desktop.
Save akullpp/99f8ca513ca5cdda570a to your computer and use it in GitHub Desktop.
Ways to instantiate a class in Java
public class A {
public void initializer() {
B b1 = new B();
B b2 = (B) classloaders.A.class.getClassLoader().loadClass("B").newInstance();
B b3 = (B) Class.forName("B").newInstance();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment