>Java >java지도 시간 >Java에서는 동일한 이름을 가진 여러 메서드를 정의할 수 있나요?

Java에서는 동일한 이름을 가진 여러 메서드를 정의할 수 있나요?

PHPz
PHPz앞으로
2023-09-03 09:21:07708검색

Java에서는 동일한 이름을 가진 여러 메서드를 정의할 수 있나요?

. 이름은 같지만 다른 매개변수 유형을 사용하여 클래스에 여러 메서드를 정의할 수 있습니다. 호출되는 메서드는 전달된 인수에 따라 달라집니다.

아래 예에서는 이름은 같지만 매개변수가 다른 세 가지 display 메소드를 정의합니다. 매개변수에 따라 적절한 메소드가 호출됩니다.

public class MethodWthSameNameTest {
   public void display() { // method with no parameters
      System.out.println("display() method with no parameter");
   }
   public void display(String name) { // method with a single parameter
      System.out.println("display() method with a single parameter");
   }
   public void display(String firstName, String lastName) { // method with multiple parameters
      System.out.println("display() method with multiple parameters");
   }
   public static void main(String args[]) {
      MethodWthSameNameTest test = new MethodWthSameNameTest();
      test.display();
      test.display("raja");
      test.display("raja", "ramesh");
   }
}

출력

display() method with no parameter
display() method with a single parameter
display() method with multiple parameters

위 내용은 Java에서는 동일한 이름을 가진 여러 메서드를 정의할 수 있나요?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

성명:
이 기사는 tutorialspoint.com에서 복제됩니다. 침해가 있는 경우 admin@php.cn으로 문의하시기 바랍니다. 삭제