is memory to the abstract class allocated ..or objects not
instantiated
Answer Posted / amit jayaswal
Actually the fact is this that abstract class is used to achieve polymorphism (abstraction 0-100) & for code sharing among closely related concrete classes, there are no need to create and object of abstract class direct using "new" operator, because there are some abstract method & nothing to be allocated for abstract method they are here only for abstraction and there are some another non abstract method (for code sharing) and attribute inside abstract class and memory will be allocated for those members on the basis of their belonging concrete class. while we invoke constructor of their concrete class then the constructor of abstract class will be invoke implicitly.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
List out benefits of object oriented programming language?
hr interview how many minutes asking question
What is scope & storage allocation of static, local and register variables? Explain with an example.
What should I import for arraylist in java?
What do you mean by thread safe?
Can we write a class without main method in java?
What is meant by string is immutable?
What is join () in java?
What is struts in java?
What is "this" keyword in java? Explain
What is arrays fill in java?
What differences exist between iterator and listiterator?
What is a boolean expression in java?
How do you write a scanner class in java?
What is anagram of a string?