Use of Abstract Keyword in Java like Abstract Class

Hi friends, today we will discuss another important keyword of Java called Abstract keyword. Note down this important points of the Abstract keyword

Abstract class acts as a base class for other classes of same type.
Abstract class can’t be instantiated.
There can be any abstract class without any abstract method but vice versa is not possible.
If we [...]

Use of Super Keyword in Java

Ok today we will try to discuss the super keyword of Java. What is the super keyword in Java?, What is the use of super Keyword in Java?, How to practically implement super keyword in Java?, we will discuss all this things. So first note down these important points regarding super keyword in Java.

Super keyword [...]

Next Page »