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
What is constructor chaining and how is it achieved in java?
Does every java program need a main?
Can private class be extended java?
Is it possible for a yielded thread to get chance for its execution again?
What is final?
What is abstract class? Explain
What is abstraction in java?
What is classpath?
What is Java Reflection API? Why it’s so important to have?
What does nextint () do in java?
What is method overriding in java ?
Can we instantiate interface in java?
In multi-threading how can we ensure that a resource isn't used by multiple threads simultaneously?
What are Normalization Rules? Define Normalization?
Can we write class inside a class in java?