1. 정적 메서드를 외부에서 호출할 때는 클래스 이름.메서드 이름 또는 개체 이름.메서드 이름을 사용할 수 있습니다. 인스턴스 메소드에는 두 번째 메소드만 있습니다.
객체를 생성하지 않고도 정적 메서드를 호출할 수 있습니다.
2. 정적 메서드 클래스 멤버를 사용할 경우 정적 멤버만 액세스할 수 있으며, 인스턴스 멤버 변수 및 인스턴스 메서드에는 액세스가 허용되지 않습니다.
인스턴스
public class staticMethodTest { void nonStaticMethod() { System.out.println("This is a non static method"); } static void staticMethod(staticMethodTest s) { System.out.println("This is a static method"); s.nonStaticMethod(); } public static void main(String[] args) { staticMethodTest obj=new staticMethodTest(); staticMethod(obj); } }
위 내용은 Java 정적 메소드와 인스턴스 메소드의 차이점은 무엇입니까의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!