super keyword in java
Let’s learn super keyword in java. super keyword in java super keyword is a reference variable used to refer immediate parent class object. To understand super keyword clearly first learn polymorphism and inheritance. Let’s see example on super keyword. // parent class class Demo { int a = 6; } // child class class Example…
Read More super keyword in java