Skip to content

Instantly share code, notes, and snippets.

@chrisyco
Created May 15, 2011 01:23
Show Gist options
  • Save chrisyco/972805 to your computer and use it in GitHub Desktop.
Save chrisyco/972805 to your computer and use it in GitHub Desktop.
Epic Example From Java Specification
interface Fish { int getNumberOfScales(); }
interface Piano { int getNumberOfScales(); }
class Tuna implements Fish, Piano {
// You can tune a piano, but can you tuna fish?
int getNumberOfScales() { return 91; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment