what is difference between abstract and interface?
can i give real time example for the two topics?
Answer Posted / tharun raj s
an abstract class contains 1)instance variables 2)concrete
methods(implemented methods). 3)abstract
methods(unimplemented methods)
An interface contains 1)abstract methods and variables which
are public static and final by default
Abstract class is written when there are certain common
features shared by all the objects
Interface is written when all the features are implemented
differently in different objects
when an abstract class is written it is the duty of the
programmer to provide subclasses to it.
An interface is written when the programmer wants to leave
the implementation to the third party vendors
| Is This Answer Correct ? | 11 Yes | 1 No |
Post New Answer View All Answers
What does this mean java?
Why is flag used in java?
What do you mean by global variable?
What are the advantages of compiled language?
Why does the integer quotient -0/3 yield 0, but the double quotient -0.0/3.0 yields – 0.0?
What is the static field modifier?
How arrays are stored in memory in java?
What do you mean by append?
What is the right data type to represent a price in java?
What is a conditional equation?
What is a vararg?
What are constructors in java?
What is array in java?
Is ++ operator is thread safe in java?
Explain the concept of hashtables?