InterviewSolution
Saved Bookmarks
| 1. |
Why We Cannot Override Static Method? |
|
Answer» It is because the STATIC method is the PART of class and it is bound with class whereas instance method is bound with object and static gets MEMORY in class area and instance gets memory in heap. It is because the static method is the part of class and it is bound with class whereas instance method is bound with object and static gets memory in class area and instance gets memory in heap. |
|