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
What is abstract class? Explain
Is zero a positive integer?
Does the order of public and static declaration matter in main method?
What is the difference between numeric and integer?
How you can force the garbage collection?
Is empty in java?
What is the use of toarray () in java?
Justify your answer that you can't define a method inside another method in java, if you can then how?
What is the difference between variable declaration and variable initialization?
How to retrieve data from database in java using arraylist?
How do you test a method for an exception using junit?
Which data type is a class in java?
What is the default size of arraylist in java?
1.IN CASE OF DYNAMIC METHOD DISPATCH WHY WE USE REFERENCE VARIABLE,WE CAN USE THE DIFFERENT DEFINED OBJECT DIRECTLY TO ACCESS THE DATA MEMBER AND MEMBER FUNCTION OF THAT RESPECTIVE CLASS?WHAT IS THE MAIN FUNCTION OF "REFERENCE VARIABLE" HERE?
What is the full form of jpeg?