在Java中可以用className.variableName调用静态变量吗?

在Java中可以用className.variableName调用静态变量吗?

类变量也被称为静态变量,是用 static 关键字来声明的。可以使用类名作为 className.variableName 来访问一个类变量而不需要实例化。

示例:

public class Test{
   static int num = 12345; // 类变量
   static String site = "geekdocs";

   public static void main(String args[]) throws Exception {
      System.out.println(Test.num);
      System.out.println(Test.site);
   }
}

运行结果:

12345
geekdocs

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程