Difference between Abstract Class & Interface?
Answer Posted / brijendra kumar(xavient)
Abstract Class:
1-Abstact class declare with the abstract keyword.
2-Abstract class contains the both method declaration and
defeination.
3-Abstract class donot have the instant variable.It have
only constrants.
3-Abstract class extended by its sub class.
4-Abstract class support only single inheritence.
Interface:
1-Interface declare with the interface keyword.
2-Interface contains the only collection of method
signature.
3-Interface implement by a class.
4-Interface extended by one or more interfcae.
5-Interface support the multiple inheritence.
6-Interface is useful for java development.
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
Explain the inheritance principle.
What happens when the parent process of a child process exits before the child ?
Explain working of java virtual machine (jvm)?
What is spliterator in java se 8?
What are the advantages of java 8’s date and time api over old date api and joda time api?
What is exe file in java?
What are the Advantages of java se 8 new features?
Is lambda expression an object?
Why sun introduce concept of anonymous class? What is need and real life use of anonymous class
What does jpa mean?
What is phantom memory?
What is a bean class?
What is meant by annotation in java?
What is flatmap in java8?
Which type of stream is in java?