Tell me the scenario,Where we can use interfaces or
Abstract class.And What is the difference between
interfaces and abstract class?
Answer Posted / vishal
Abstract Class encapsulates shared(common) behavior and
define place holder for all subclasses
- Define shared behavior
- Can have implementation code
- Can not be instantiated
- A class can be inherited from single abstract
class—Unless language supports Multiple inheritance.
- Provide both abstract and concrete menthods
- Strict IS-A relationship.
Interface: If there is no shared behavior –each subclass
must implement all method defines in a base class this is
called as Interface
- Defines Behavior. It is a cntract and its subclass
must implement it.
- Can not be instantiated
- A class can implemet mutiple interfaces
- Provide only abstract methods
- Not a strict IS-A relationship
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Can we create object of abstract class?
Can destructor be overloaded?
What is inheritance and how many types of inheritance?
What does I oop mean?
How do you answer polymorphism?
What is class and object in oops?
What is difference between multiple inheritance and multilevel inheritance?
Why do pointers exist?
Why oops is important?
What is polymorphism and types?
What is the main purpose of inheritance law?
What is destructor give example?
What are the benefits of polymorphism?
What is overriding in oop?
What is the difference between abstraction and polymorphism?