is memory to the abstract class allocated ..or objects not
instantiated
Answer Posted / garima
for abstract class in java can not be directly instantiated
with new operator Because abstract class is not fully
defined.ie,it's meaningless to implement incomplete class
and Since "classname var =new classname();" is responsible
for allocating the memory ,hence there will be no memory or
object will be instantiated for abstract class.
But we can make reference to abstract class.
example Box b1;
| Is This Answer Correct ? | 16 Yes | 0 No |
Post New Answer View All Answers
What is linkedlist in java?
What do you mean by ordered and sorted in collections in java?
Explain the selection sort algorithm and state its time complexity?
What does indexof mean?
take an array with -ve and +ve value both.find out the nearest value of 0(zero).if two values are same like(-2 and +2)then extract +2 is nearest of 0(zero).
When do I need to use reflection feature in java?
What is a class component?
Give few examples of final classes defined in Java API?
How does arraylist size increase in java?
How to make object serializable in java?
Is null function in java?
How we can make copy of a java object?
What is charat ()?
Does google use java?
Why can't we use static class instead of singleton?