스레드에서 start() 메서드를 호출하면 스레드가 실행을 시작하고 스레드의 run() 메서드가 Java Virtual Machine (JVM)에 의해 호출됩니다. run() 메소드를 직접 호출하면 스레드 클래스(또는 실행 가능 인터페이스)의 일반적인 재정의된 메소드로 처리되며 스레드가 아닌 현재 스레드의 컨텍스트에서 실행됩니다. 실행 중인 새 스레드.
public class CallRunMethodTest extends Thread { @Override public void run() { System.out.println("In the run() method: " + Thread.currentThread().getName()); for(int i = 0; i < 5 ; i++) { System.out.println("i: " + i); try { Thread.sleep(300); } catch (InterruptedException ie) { ie.printStackTrace(); } } } public static void main(String[] args) { CallRunMethodTest t1 = new CallRunMethodTest(); CallRunMethodTest t2 = new CallRunMethodTest(); t1.run(); <strong>// calling run() method directly instead of start() method</strong> t2.run(); <strong>// calling run() method directly instead of start() method</strong> } }
위의 예에서는 두 개의 스레드가 생성되고 start() 메서드를 호출하는 대신 스레드에서 run() 메서드가 직접 호출됩니다.
In the run() method: main i: 0 i: 1 i: 2 i: 3 i: 4 In the run() method: main i: 0 i: 1 i: 2 i: 3 i: 4
위 내용은 Java에서 Thread.start() 대신 Thread.run()을 언제 호출해야 합니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!