This example describes the use of the Super keyword in java. Share to everyone for your reference. The specific methods are analyzed as follows:
Super keyword: Use super in Java to refer to the composition of the base class.
The program code is as follows:
Class fatherclass{public
int value;
public void F () {
value = m;
System.out.println ("Fatherclass.value:" +value);
}
Class ChildClass extends fatherclass{
private int value;
public void F () {
super.f ();
value=200;
System.out.println ("Childclass.value:" +value);
System.out.println (value);
System.out.println (Super.value);
}
public class testinherit{public
static void Main (String args[]) {
childclass cc = new ChildClass ();
CC.F ();
}
The output is shown in the following illustration:
The memory distribution is shown in the following illustration:
I hope this article will help you with your Java programming.