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
What is class encapsulation?
What is abstraction and encapsulation?
What is overloading and its types?
What is constructor overloading in oop?
How can you overcome the diamond problem in inheritance?
What are the 5 oop principles?
What are the 3 pillars of oop?
why reinterpret cast is considered dangerous?
What is the difference between procedural programming and oops?
Can static class have constructor?
What are the features of oop?
What is coupling in oop?
How do you answer polymorphism?
What is polymorphism and its types?
How do you define a class in oop?