static

static是什么?

Static是java里的一个非访问修饰符(Non Access Modifier),可以被用在变量,方法,嵌套类和静态block上。

1. 静态变量

  • 静态变量只在class loading时被分配一次内存。
  • 所有类的实例共享一份静态变量的拷贝,访问静态变量时可直接用<>.<>无需建立实例。
  • 静态变量的值对于所有该类实例是共用的。
  • 局部变量前不能加static,否则会抛出"illegal start of expression"

As static variables are available for the entire class so conceptually it can only be declared after the class whose scope is global where as static block or methods all have their own scope.

但是这在c/c++中是允许的
From wikipedia:

"Static local variables: variables declared as static inside inside a function are statically allocated while having the same scope as automatic local variables. Hence whatever values the function puts into its static local variables during one call will still be present when the function is called again."

2. 静态方法

  • 静态方法属于类而不是类的实例,可以直接用<>.<>调用。
  • 静态方法只能访问静态变量。只能调用静态方法。
  • 静态方法中只有main()会被JVM自动调用。

3. 静态方法能否被重载

, Read More..

4. 静态方法能否被覆盖

不能, 因为JAVA里不会有 Run-time Polymorphism. Read More..

5. 为什么main()方法要是静态的

因为如果main方法不是静态的,要先实例化对象才能调用main,会需要额外的内存分配。

6. 静态块

  • 静态块是类第一次被加载进JVM时会执行的一段代码。大多情况用来初始化变量。
  • 静态块只会在加载时被调用过一次,不能有返回类型或关键词(this,super)。
  • 可以有多个静态块,执行顺序同写的顺序。

7. 静态类

  • 只有嵌套类可以被声明为static,顶层类不行。
  • Even though static classes are nested inside a class, they doesn’t need the reference of the outer class they act like outer class only. Read More..

8. 构造函数可以是static的吗?

不能,会报错“modifier static not allowed here”

  • 如果构造函数是static,那么子类无法继承,违背了JAVA继承的目的。
  • 构造函数是与一个实例相关的,声明成static无意义。

8. 为什么抽象方法不能是static的?

抽象方法不能被调用,而static方法可直接被调用,矛盾。

9. interface中不能有static方法

因为接口中所有方法是隐式abstract的。

10. abstract类可以有static方法吗

可以。

你可能感兴趣的:(static)