Java SE/Thread 썸네일형 리스트형 Thread 01 Thread 를 생성하는 2가지 방법 // This class extends Thread class BasicThread1 extends Thread { // This method is called when the thread runs public void run() { } } // Create and start the thread Thread thread = new BasicThread1(); thread.start(); class BasicThread2 implements Runnable { // This method is called when the thread runs public void run() { } } // Create the object with the run() method Runna.. 더보기 이전 1 다음