Skip to content

Instantly share code, notes, and snippets.

@kasramp
Created August 3, 2020 20:18
Show Gist options
  • Save kasramp/9a89b6435ce9aaa0902f28ed2ee2a0aa to your computer and use it in GitHub Desktop.
Save kasramp/9a89b6435ce9aaa0902f28ed2ee2a0aa to your computer and use it in GitHub Desktop.
class Base {
private int x;
private int y;
public setXY(int x, int y) {
this.x = x;
this.y = y;
}
}
class SubClass extends myBase {
public setXY(int x, int y) {
super.setXY(x,y);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment