Java Program using superclass constructor with parameters
In this program, You will learn how to implement a superclass constructor with parameters in java.
super(int, int);
Example: How to implement a superclass constructor with parameters in java.
class A {
A(int x, int y) {
System.out.println("The x value is :" + x);
System.out.println("The y value is :" + y);
}
}
class Main extends A {
Main() {
super(10, 20);
}
public static void main(String args[]) {
Main obj = new Main();
}
}
Output:
The x value is :10
The y value is :20