21일차(1)/java(28) : Thread Step15_Thread 패키지01 MyFrame - sleep(스레드는 멈추는 메소드)을 사용한 경우 package frame01; import java.awt.FlowLayout; import java.awt.event.ActionEvent; import java.awt.event.ActionListener; import javax.swing.JButton; import javax.swing.JFrame; import javax.swing.JTextField; public class MyFrame extends JFrame implements ActionListener{ //생성자 public MyFrame(String title) { super(titl..