Skip to content

Instantly share code, notes, and snippets.

@LazaroIbanez
Created September 3, 2017 16:46
Show Gist options
  • Save LazaroIbanez/e424eb8dcb77570f76756b11a52f5b3e to your computer and use it in GitHub Desktop.
Save LazaroIbanez/e424eb8dcb77570f76756b11a52f5b3e to your computer and use it in GitHub Desktop.
super() example
public class H extends H1 {
public H() {
super(50);
System.out.println(“From H constructor”);
}
public static void main(String args[]) {
H objectH = new H();
}
}
class H1 {
public H1(int x) {
System.out.println(“From H1 constructor: “ + x);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment