what is the difference between abstract class and
Interface?where we can use it in realtime projects?
Answer Posted / priyanjan
The core diffrence between abstract class and interface is
that interface does not allow implementation of method but
abstract class allows.
Interface is a bunch of declaration of relevant functions.
In real time projects, interface can used if we have to
implement any framework.for eg, if want to implement the
framework of stack,we can do it by defining the prototypes
of push(),pop(),peek() methods in an interface and then
implementing it by any class.
Abstract classes is useful when we are not
required to implement all methods in our class.for eg,we
have Vehicle class, we want to implement classes for two
wheelars in which hand brake is given and in some vehicles
foot brake are given, then Vehicle class abstract class can
be defined as abstract class and implemention of brake()
can be done in applicable classes.
| Is This Answer Correct ? | 84 Yes | 8 No |
Post New Answer View All Answers
What are different types of inner classes ?
Are floats faster than doubles?
What type of value does sizeof return?
How do you write a good declaration?
How many return statement are allowed in a function?
String and stringbuffer both represent string objects. Can we compare string and stringbuffer in java?
What is variable explain?
What is the difference between Grid and Gridbaglayout?
What is difference between hashset and hashmap in java?
What is difference between static and abstract class?
Which arithmetic operations can result in the throwing of an arithmeticexception?
What state is a thread in when it is executing?
How many bytes are there?
How is Object Oriented Programming different from Procedure Oriented Programming?
What are 5 boolean operators?