Computer >> 컴퓨터 >  >> 프로그램 작성 >> Java

Java에서 동일한 이름을 가진 클래스에 여러 메소드를 정의할 수 있습니까?


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

아래 예에서는 세 가지 디스플레이 이름은 같지만 매개변수가 다른 메소드. 매개변수에 따라 적절한 메소드가 호출됩니다.

예시

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