전체 글 (229) 썸네일형 리스트형 [Java] Thread 문제점 codingcoding.tistory.com/511 [Java] Thread (api 8) 주요 메소드 [Java] Thread 1.쓰레드의 도입 2. Creating a Thread 가. Thread 클래스를 상속하고 run() 메소드를 오버라이딩하거나 public class MyClass extends Thread { public void run() { System.out.println("This code is running in a thread"); } } 나. Runnable 인터페이스를 구현한다. public class MyClass implements Runnable { public void run() { System.out.println("This code is running in a thread"); } } 3. Running Threads 가.의 경우 인스턴스 생성 후 start() 메소드 호출 the thread.. 이전 1 ··· 57 58 59 60 61 62 63 ··· 77 다음