예. 이름은 같지만 다른 매개변수 유형을 사용하여 클래스에 여러 메서드를 정의할 수 있습니다. 호출되는 메서드는 전달된 인수에 따라 달라집니다.
아래 예에서는 이름은 같지만 매개변수가 다른 세 가지 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 중국어 웹사이트의 기타 관련 기사를 참조하세요!