👣 구현 방법 1. Runnable 인터페이스 구현 public class MyRunnable implements Runnable { @Override public void run() { System.out.println("스레드 시작"); try { Thread.sleep(1000); } catch (InterruptedException e) {} System.out.println("스레드 종료"); } } MyRunnable run = new MyRunnable(); Thread thr = new Thread(run, "name"); thr.start(); 2. Thread 클래스 상속 public class MyThread extends Thread { @Override public void run..