Skip to content

Instantly share code, notes, and snippets.

@yusufcakal
Created November 2, 2017 18:22
Show Gist options
  • Select an option

  • Save yusufcakal/4fd4f824285429a78b97d91059853d69 to your computer and use it in GitHub Desktop.

Select an option

Save yusufcakal/4fd4f824285429a78b97d91059853d69 to your computer and use it in GitHub Desktop.
Medium Post
public class ComputerFactory {
public static Computer createComputer(Class aClass) throws IllegalAccessException, InstantiationException {
return (Computer) aClass.newInstance();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment