본문 바로가기

공부

[자바] 상속 Cannot reduce the visibility of the inherited method from * 오류

 

 

Player.class

접근 권한을 축소할 수 없다는 에러.

 

Gamer라는 인터페이스를 상속받은 Player 클래스다.

 

인터페이스 Gamer는 public인데 Player에서 showCards()는 private으로 돼있어서 오류남

 

해당 메소드를 public으로 바꾸면 됨