What is the difference between Abstract and Interface?
Answer Posted / ntmohare
Abstract Class:
(1)it contains both abstract methods and non abstract methods
(2) object can't be created just through reference we are calling all the methods
(3) it is implemented by subclass i.e which class is extended from this
abstract class contains only nonabstract this situation also code will compile fine but problem at runtime
abstract can't be declared with Final Synchronized Native just your requirements you implement some methods in the abstract class
this class also contain Constructor
========
Interface contains all abstract methods
all methods compulsory implemented by particular class
interface does not contain Constructor
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What do you use c# for?
What is the difference between arraylist and list in c#?
What is the use of properties window?
What is sql transaction in c#?
What is an enumerator c#?
What is the default value of guid in c#?
Why are strings immutable in c#?
What is meant by enumerable in c#?
What is the difference between iqueryable and ienumerable?
Can enum have methods c#?
What is a dll in c#?
What is wrong with the sample program below?
What are the different types of classes?
What is inumerable?
Is dictionary a collection?