Why we can't create the object of abstract class ?
Answer Posted / rajesh kamble
abstract class contain one or more pure vertual
function ,this types of class contain only the declaration
of method ,it do not have defination of any method,when we
define any abstract class object it not allocate the memory
to any object , and when any object of class will created
it first initialise memory for class and then methods. and
look for the defination for that, for that point of view
when we create object of any abstract class method
defination will not present and memory cannot be allow to
object. any by the compiler it cause the error.
| Is This Answer Correct ? | 8 Yes | 7 No |
Post New Answer View All Answers
Explain what is the smallest unit of execution in .net?
Define delay signing?
What is the difference between == and object.equals?
Does unity use c++ or c#?
What is list collection in c#?
Why do we write system in c#?
What is difference between array and collection?
How big is int16?
Can a struct inherit from an interface in c#?
How does yield return work c#?
How do you declare a variable in c#?
What is strongly typed view?
What is xpath in c#?
Is boxing an implicit conversion?
Why do we need reflection in c#?