在Java中,通过类名调用的方法称为静态方法(static method)。静态方法是与类关联而不是与对象实例关联的方法。可以直接使用类名来调用静态方法,而不需要先创建类的对象。
以下是一个示例代码,演示如何通过类名调用静态方法:
public class MyClass { public static void myStaticMethod() { System.out.println("This is a static method."); } } public class Main { public static void main(String[] args) { MyClass.myStaticMethod(); // 通过类名调用静态方法 } }
在上面的示例中,`myStaticMethod()` 是一个静态方法,它属于 `MyClass` 类。在 `main` 方法中,我们通过类名 `MyClass` 调用了静态方法 `myStaticMethod()`。输出将是 "This is a static method."