Skip to content

Instantly share code, notes, and snippets.

@Khrol
Created April 17, 2013 12:27
Show Gist options
  • Save Khrol/5403851 to your computer and use it in GitHub Desktop.
Save Khrol/5403851 to your computer and use it in GitHub Desktop.
public class CastUsage {
public void useClass(BaseClass input) {
input.baseClassMethod();
((SomeInterface)input).someInterfaceMethod();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment