Issue
When is static variable loaded, runtime or compile time? Can someone please explain it.
I would really appreciate the help.
Thank you.
Solution
They are loaded at runtime.
Static means: that the variable belong to the class, and not to instances of the class. So there is only one value of each static variable, and not n values if you have n instances of the class.
Answered By - Ralph
Answer Checked By - Mary Flores (JavaFixing Volunteer)