Inheritance in Java with Examples

In this post we are going to learn what is inheritance in java and what are the types of inheritance in java with their examples.

Inheritance in java is a Object Oriented Programming(OOPS) concept, which allows one class to

Generic Class Example in Java

In this post we are going to learn what is generic class with example. Generic class in java example. 

A Generic class means in that class we can use any type as parameter(T).  In this example we are using the T type parameter to create a generic class.

Example of a Constructor in Java

In this post we are going to create a class in Java with constructor. So let's see how to create a class in Java which contains constructor method.  

First of all we need to know what is a constructor in Java.