[Java] 11장 멀티 스레딩
✅ 1. 스래드 생성 방법Java 에서 스레드를 만드는 방법으로는 두 가지 방법이 있습니다.1️⃣ Thread 클래스 상속class MyThread extends Thread { @Override public void run() { System.out.println("Thread is running: " + Thread.currentThread().getName()); }}public class ThreadClassExample { public static void main(String[] args) { MyThread t1 = new MyThread(); t1.start(); // Start the first thread }}run() ..