For example, if you have an application framework, an Abstract Class may provide default services such as event and message handling. Those services allow your application to plug in to your application framework. However, there is some application-specific functionality that only your application can perform. Such functionality might include startup and shutdown tasks, which are often application-dependent.
So instead of trying to define that behavior itself, the Abstract Base Class can declare abstract shutdown and startup methods. The base class knows that it needs those methods, but an Abstract Class lets your class admit that it doesn't know how to perform those actions; it only knows that it must initiate the actions. When it is time to start up, the Abstract Class can call the startup method. When the base class calls this method, Java calls the method defined by the child class.
abstract class Human {
void hand(){
System.out.print("Two Hands");
}
void leg(){
System.out.print("Two Leg");
void head(){
System.out.print("One Head")
}
void language();
void language();
}
public class southIndia extends Human{
void dressCode(){
//Traditional dress Code
}
void language(){
// Telugu, Tamil, Kanada,Kokani
}
public class NorthIndia extends Human{
void dressCode(){
// Traditional Dress Code of North India
}
void language(){
//Hindi
}
}
Posted in: