InterviewSolution
| 1. |
Can You Access Non Static Variable In Static Context? |
|
Answer» A static variable in Java BELONGS to its class and its value remains the same for all its instances. A static variable is initialized when the class is loaded by the JVM. If your CODE TRIES to access a non-static variable, without any instance, the COMPILER will COMPLAIN, because those variables are not created yet and they are not associated with any instance. A static variable in Java belongs to its class and its value remains the same for all its instances. A static variable is initialized when the class is loaded by the JVM. If your code tries to access a non-static variable, without any instance, the compiler will complain, because those variables are not created yet and they are not associated with any instance. |
|