Skip to content

Instantly share code, notes, and snippets.

@Integerous
Last active October 3, 2018 02:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Integerous/a5cda350b8a973e3940b2e59a55229ea to your computer and use it in GitHub Desktop.
Save Integerous/a5cda350b8a973e3940b2e59a55229ea to your computer and use it in GitHub Desktop.
void doWork(Car c) {
if (c instanceof FireEngine){
FireEngine fe = (FireEngine)c;
fe.water();
...
}else if ...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment