Friday 27 June 2014

java inheritance

For inheritance we use the word EXTENDS in small case

like

public Employee extends Doctor
{

// do with the class what ever you want

}

in this upper line


Employee is the parent class and Doctor is the sub class of Employee

and the word extends is use for inheritance

in next post we will discuss in detail



No comments:

Post a Comment