adspace
why abstract class does not have object creation
Answer Posted / kd singh
"Abstract class has not implemented method so, we cant create the object" "The word 'Abstract' instruct the clr that not to create object of the class"
But in a simple class where we have all virtual method, able to create an object???
Also, we can define different access modified to Abstract class constructor like private, protected or public.
An abstract type is defined largely as one that can't be created. You can create subtypes of it, but not of that type itself. The CLI will not let you do this.
An abstract class has a protected constructor (by default) allowing derived types to initialize it.
| Is This Answer Correct ? | 5 Yes | 1 No |
Post New Answer View All Answers
Write a program to find the whether a number is an Armstrong number or not?
Is minecraft 1.15 out?
Differentiate between static and non-static methods in java.
Explain public static void main(string args[]) in java.
Write a program to print count of empty strings in java 8?
How to create a base64 decoder in java8?
What is the difference between break and continue statements?
What is java string pool?
What is a constructor overloading in java?
How to sort array in descending order in java?
Realized?
What is parsing in java?
What is an object in java and how is it created?
explain different ways of using thread? : Java thread
What do you mean by an interface in java?