Skip to content

Instantly share code, notes, and snippets.

@nitin42
Created February 26, 2018 15:52
Show Gist options
  • Save nitin42/a4dde7b8abc617450cb2b2867bf14ef9 to your computer and use it in GitHub Desktop.
Save nitin42/a4dde7b8abc617450cb2b2867bf14ef9 to your computer and use it in GitHub Desktop.
interface CarVisitor {
void accelerate(Sedan sedan),
void brake(Hatchback hatchback)
}
abstract class Cars {
abstract void operate(CarVisitor carVisitor);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment