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
What is data adapter in c#?
What is desktop example?
What are cshtml files?
Does c# have a 'throws' clause?
What is default parameter in c#?
Can you inherit multiple abstract classes in c#?
What is global namespace in c#?
In which way a two-dimensional array declared in C#?
What are the return types in c#?
What is a partial class. Give an example?
Does c# support multiple class inheritance?
What is instantiating a class?
What is clr in c#?
What is a callback c#?
How can you set image source dynamically from c# application to ”test.png” file?