package studyjava; public interface Healer { public void heal(); default public void revive() { System.out.println("æ¬è±é夿´»äº"); } }