Static is the meaning of statics, which can be used to modify member variables and member functions, which are statically decorated member functions that only access static members and cannot access non-static members. Static is loaded as the class loads, so it can be accessed directly from the class.
Overrides, also known as Overrides, are the same way that a method in a subclass inherits from a subclass in a parent class (the function name, parameter type, parameter, return value type), but the subclass does not have access rights lower than the parent class. The overriding premise is that inheritance must be inherited, and the private adornment does not support inheritance, so it cannot be overridden by proprietary methods. Static methods can be overridden, that is, a subclass can override static methods in the parent class, but in fact the static method is not overridden in the memory perspective.
What does the "static" keyword mean? Is it possible to overwrite (override) a private or static method in Java?