静态方法 vs 实例方法:
静态方法(使用 static
关键字声明):属于类,不依赖于对象实例,可以通过类名直接调用。
实例方法(不使用 static
关键字声明):属于类的实例,必须通过对象实例调用。
public class Example {static void staticMethod() {System.out.println("Static method");}void instanceMethod() {System.out.println("Instance method");}public static void main(String[] args) {staticMethod(); // 可以直接调用静态方法Example obj = new Example();obj.instanceMethod(); // 需要通过对象调用实例方法}
}