0
What do u mean by static in java programming language?
2 Answers
0
The static keyword denotes that a member variable, or method, can be accessed without requiring an instantiation of the class to which it belongs. In simple terms, it means that you can call a method, even if you've never created the object to which it belongs
0
The data and method members that directly belong to the class are call static members. You can use class name dot member name to use them without instantiate an object from that class.