익명클래스
-
[Java] 익명클래스프로그래밍 언어/Java 2022. 2. 10. 10:41
익명클래스는 메인 메소드 내에서 메소드를 오버라이드 할 수 있다. class Student { public void gotoSchool() { System.out.println("학교에 간다."); } } public class interface02 { public static void main(String[] args) { Student stu = new Student() { public void gotoSchool() { System.out.println("오늘은 늦게 학교에 간다."); } }; stu.gotoSchool(); } }