Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

What is an abstract class and abstract method?

Answer Posted / tarun

Abstract Class : An abstract class can not be initialized.
Any class can extends it. The methods declared in the
abstract class can be abstract or not.
Abstract Method : If any method is declared as abstract
method it should be in a abstract class. And it can be
override by any other class which is extending it. if method
is declared as abstract it should not contain body.

For Example:
public abstract class AbstractEx {
public void reset(){
System.out.println("The Sun Rises in the east");
}
public abstract void method();
protected abstract void newmethod();
}

Is This Answer Correct ?    6 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is java used for?

996


How many bytes are a float?

968


Can an interface implement another interface?

1015


Explain the difference between string, stringbuffer and stringbuilder in java?

986


How to overcome the exception object reference not set to an instance of object?

1129


What steps are taken when the OS shifts from one-thread execution to another?

1348


Which methods cannot be overridden in java?

969


How to instantiate static nested classes in java?

1067


What is a list in java?

939


Can an unreferenced object be referenced again?

1173


What is exception in java?

1066


What is a finally block? Is there a case when finally will not execute?

1052


What is a local class in java?

1015


What is the lifetime and scope of a variable?

988


Can private class be extended java?

1004