InterviewSolution
Saved Bookmarks
| 1. |
What Are The Restriction Imposed On A Static Method Or A Static Block Of Code? |
|
Answer» A static method should not REFER to instance VARIABLES without CREATING an instance and cannot USE "this" OPERATOR to refer the instance. A static method should not refer to instance variables without creating an instance and cannot use "this" operator to refer the instance. |
|