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 the difference between abstract class and
Interface?where we can use it in realtime projects?

Answer Posted / sachi

A class may inplement several interfaces. A
class may
extend only one abstract class.
2 An interface can have only abstract methods. An
abstract
class can have both abstract methods and concrete methods.
At one abstract method in the abstract class.
3 Interfaces cannot have constructors. Abstract
class can
have constructors.
4 Only static final variables are allowed to be
decelared.
Both static and instance variables are allowed.
5 All decelared methods are implicitly public. Can
have any
kind of methods.
6 We should initialize variables in an interface. Not
necessary to initialize variables in an abstract class.
7 In the case of interface you can make any class in
the
hierarchy. In the case of abstract class you know the
class
hierarchy in advance.
8 An interface implementation may be added to any
existing
third party class. A third party class must be
rewritten to
extend only from the abstract class.
9 Interfaces can be implemented by classes that are
not
related to one another Abstract classes are used only when
there is a “is-a” type of relationship between the classes.

Is This Answer Correct ?    18 Yes 5 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Can we overload final method in java?

970


What is ‘is-a ‘ relationship in java?

1012


Explain heap sort?

1099


What are the classes of java?

957


Can we have 2 main methods in java class?

1010


What does \ mean in regex?

1199


What are the three parts of a lambda expression? What is the type of lambda expression?

1024


What is constructor chaining in java?

1055


how can you catch multiple exceptions in java?

1007


Which are different kinds of source code?

1103


What is array sorting in java?

1047


what is the swingutilities.invokelater(runnable) method for? : Java thread

1032


Given a singly linked list, how will you print out its contents in the reverse order? Can you do it with consuming any extra space?

975


What is the use of string and stringbuffer?

971


Difference between static synchronization vs. Instance synchronization?

1097