[Java 오류] 오버라이딩시 Unresolved compilation problem: The return type is incompatible with...


[Java 오류] 오버라이딩시 Unresolved compilation problem:  The return type is incompatible with...

예시를 들겠다.위처럼 상속관계에 있는 Parent클래스와 Child클래스에 같은 이름의 hello()라는 메서드가 있다. 여기서 메서드 리턴 타입이 다르게 되면 아래와 같은 에러가 발생하게 된다.오버라이딩을 위해서는 아래와 같은 조건을 충족해야한다.1. 메서드의 이름2. 메서드의 리턴 타입3. 메서드의 매개변수의 갯수, 순서, 데이터 타입이렇게 메서드의 형태를 정의하는 사항들을 통틀어 메서드의 서명이라고 한다.따라서, The return type is incompatible with... 에러는 메서드간 서명이 달라 발생한 문제이다....

[Java 오류] 오버라이딩시 Unresolved compilation problem: The return type is incompatible with...에 대한 요약내용입니다.

자세한 내용은 아래에 원문링크를 확인해주시기 바랍니다.



원문링크 : [Java 오류] 오버라이딩시 Unresolved compilation problem: The return type is incompatible with...