1. import 생성
2. 메인클래스 선언(반드시 Jlet을 상속받아야 한다.)
3. Jlet에 있는 abstrict Method를 선언한다.
3-1. startApp(String args[]), destroyApp(boolean b)
3-2. pauseApp(), resumeApp()
4. Display Class 객체변수 선언
5. Card Class 객체변수 선언
5-1. Card Class는 반드시 다른이름으로 선언한후 Card Class를 extend(상속) 받는다.
6. Card Class 선언(실제 카드를 만든다. 해야할일 지정)
6-1. Card Class는 반드시 extend 받게끔 작업을하고 5-1에서 선언한 이름을 사용한다.
6-2. Card Class는 abstrict Class이므로 abstrict Method를 반드시 선언한다.
6-3. Card Class의 abstrict Method인 paint Method를 선언 - paint(Graphics g)
6-4. paint Method안에서 해야할일을 지정한다.
(Graphics 의 Member Method를 사용하거나, Card의 Member Method를 사용할 수 있다.)
7. startApp Method 안에서 Display Class 의 pushCard Method를 사용하여 생성한 Card Class 를 출력한다.
댓글 영역