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 is arraylist class in java?
Why multiple inheritance is not supported by java?
What is the name of the java compiler?
What is a private class in java?
How to handle a web browser resize operation?
How do you compare characters in java?
Why is the singleton pattern considered to be an anti pattern?
What are the important methods of java exception class?
What are the skills required for core java?
What do you mean by platform independence?
Objects or references which of them gets garbage collected?
Can a class extend more than one class?
What is jar?
What is considered an anti pattern?
What is try-with-resources in java?