📜  为什么我们在 Java 代码示例中使用静态

📅  最后修改于: 2022-03-11 14:52:26.734000             🧑  作者: Mango

代码示例2
In Java, static keyword is mainly used for memory management.
It can be used with variables, methods, blocks and nested classes.
It is a keyword which is used to share the same variable or method of a given
class. Basically, static is used for a constant variable or a method
that is same for every instance of a class