Can you explain the difference b/n abtract and interface
with a good example,?In what cases we have use abtract and
what case interface?
Answer Posted / nt.jayan
Interface contains final variable and method signatures
only. All of this method and variable are should be public.
In Technically interface like Pure Abstract class.
Abstract class contains both abstract method also may having
some method defination. When we want to use some of the
functionality in abstract we use Abstract class.
Also, By using Interface we achieve multiple inheritence
using Implements. When we use Abstract class we can extends
only.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What happens when main () method is declared as private?
How to provide security in java
Difference between string, string builder, and string buffer?
How to store image in arraylist in java?
How do listeners work?
Can a class extend 2 classes in java?
Explain with example the concept of constant variable in java.
What does 3 dots mean in java?
If a variable is declared as private, where may the variable be accessed?
Which is the best sorting technique in java?
What is the use of beaninfo?
What is a method in programming?
What is the purpose of the main method?
When would you use a static class?
Tell us something about an iterator.