静态字段变量是类级别的变量,它属于类而不是类对象。
因此,静态字段变量是所有类对象共有的,即,静态字段变量的单个副本在所有类对象之间共享。
给出一个演示在声明后引用静态字段变量的程序,如下所示:
public class Demo { static int a = 7; static int b = a + 5; public static void main(String[] args) { System.out.println("a = " + a); System.out.println("b = " + b); } }
输出结果
a = 7 b = 12
现在让我们了解上面的程序。
Demo类包含静态变量a和b。该方法main()
打印a和b的值。演示此代码段如下:
static int a = 7; static int b = a + 5; public static void main(String[] args) { System.out.println("a = " + a); System.out.println("b = " + b); }