What is the differances between a abstract calss and
interface
Answers were Sorted based on User's Feedback
An abstract class holds both method prototpypes and method
definitions also...But it is not in the case of
interface..It can contain only protypes.. It should be
defined only where it is implemented...
| Is This Answer Correct ? | 20 Yes | 3 No |
Answer / abhijit
Abstract base classes can have data members but not interfaces.
Abstract base classes have private access specifier by
default while that of interfaces is public
| Is This Answer Correct ? | 8 Yes | 0 No |
Answer / porchelvi .a
ABTRACT CLASS:
-------------
• It can not be instantiated
• It allow us to specify all access modifier except
Private
• A class inheriting this must implement all of its
abstract method
• A class can inherit only one abstract class at a
time.
• Abstract class can add more functionality with out
destroying child classes that were using old version.
• We can declare the following
1. Fields
2. Constructors
3. Static Constructors
4. Static Functions
5. Concrete Functions
INTERFACE :
---------
• It can not be instantiated
• It allows only public Access modifier
• A class implementing interface must provide body
for its entire member.
• A class can implement more than one interface at a
time.
• Adding of additional functionality will have an
effect on its child class due to the necessary
implementation of interface methods.
• We can not declare the following
1. Fields
2. Constructors
3. Static Constructors
4. Static Functions
5. Concrete Functions
| Is This Answer Correct ? | 4 Yes | 0 No |
Answer / rck
Abstract class is the class which may contain pure virtual
functions as well as normal functions where as interface
may only contain pure virtual functions.
| Is This Answer Correct ? | 3 Yes | 0 No |
Answer / kanan
Abstract class: You can inherit only one class.
Interface: You can inherit more than one interface.
Abstract class: It contains both completed and uncompleted
(abstract) methods.
Interface: It only contains uncompleted methods (methods
without body).
Abstract class: Access modifiers are there for methods and
properties.
Interface: It does not have access modifier for methods or
properties. By default they are public.
Abstract class: Fast
Interface: Require more time to find actual method in classes.
Abstract class: It can contain fields and constants.
Interface: no fields can be defining in interface.
| Is This Answer Correct ? | 3 Yes | 0 No |
Why do while loop is used?
i hav very low percentage in 12th n BSCwhich is around 50.......coz it was just imposed on me 2 b a science graduate,nw m doin MCA n hav aggregate 74% ....what shud i answer if company's HR ask me about dis much low previous percentage??????
what is the need of abstraction? what is abstraction?what is the abstraction for stack?
//what is wrong with the programme?? #include<iostream.h> template <class first> class dd { first i; public: void set(); void print(); }; void dd< first>:: set() { cin>>i; } void dd< first>::print() { cout<<"\n"<<i; } void main() { dd <char>g; g.set(); g.print(); }
What is DeadlyDiamondDeathProblem ?
explain defference between structure and class with example
What is abstraction example?
Write a program in c++ to read two floating point numbers and find their sum and average.
Write on signed and unsigned integers and give three (3) examples each
which are the 4 members functions in c++ objects that can either be declared explicitly by programmer or implementation if nt available.
Which language is pure oop?
What is the diamond problem in inheritance?