0 votes
in JAVA by
What is static in java?

1 Answer

0 votes
by

In Java, a static member is a member of a class that isn’t associated with an instance of a class. Instead, the member belongs to the class itself. As a result, you can access the static member without first creating a class instance.

...