이 연습에서는 Runnable 인터페이스를 구현하는 대신 Thread 클래스를 직접 확장하여 Java에서 스레드를 생성하는 방법을 알아봅니다. 이렇게 하면 클래스가 Thread 메서드를 상속하므로 별도의 스레드를 인스턴스화할 필요 없이 스레드를 직접 조작하는 것이 더 쉬워집니다.
운동 단계
Thread 클래스 확장:
클래스는 Thread에서 상속하고 run() 메서드를 재정의해야 합니다.
클래스 생성자:
super(name) 생성자를 사용하여 스레드에 이름을 지정하고 start()를 직접 호출하여 실행을 시작합니다.
run() 메서드 재정의:
이 메서드는 스레드의 동작을 정의합니다. 여기서 스레드는 이름을 인쇄하고 루프를 실행합니다.
완전한 기능적 예:
코드는 다음과 같습니다.
// Define a classe que estende Thread class MyThread extends Thread { // Constrói uma nova thread MyThread(String name) { super(name); // Nomeia a thread start(); // Inicia a thread } // Começa a execução da nova thread public void run() { System.out.println(getName() + " starting."); try { for (int count = 0; count < 10; count++) { Thread.sleep(400); // Pausa por 400ms System.out.println("In " + getName() + ", count is " + count); } } catch (InterruptedException exc) { System.out.println(getName() + " interrupted."); } System.out.println(getName() + " terminating."); } } // Classe principal para demonstrar a execução das threads class ExtendThread { public static void main(String[] args) { System.out.println("Main thread starting."); // Cria uma nova thread MyThread mt = new MyThread("Child #1"); // Executa a thread principal for (int i = 0; i < 50; i++) { System.out.print("."); try { Thread.sleep(100); // Pausa por 100ms } catch (InterruptedException exc) { System.out.println("Main thread interrupted."); } } System.out.println("Main thread ending."); } }
코드 작동 방식
보조 스레드 생성:
"하위 #1" 스레드가 생성되고 start()로 즉시 시작됩니다.
보조 스레드 실행:
스레드는 루프를 실행하여 메시지를 인쇄하고 반복 사이에 400ms 동안 일시 중지합니다.
메인 스레드 실행:
한편 메인 스레드는 100ms 간격으로 점(".")을 인쇄합니다.
프로그램 출력(예)
Main thread starting. Child #1 starting. .In Child #1, count is 0 ..In Child #1, count is 1 ...In Child #1, count is 2 ... (continua) Main thread ending. Child #1 terminating.
관찰
기본 스레드와 보조 스레드가 동시에 실행됩니다.
run() 메소드에는 보조 스레드의 논리가 포함되어 있는 반면, 기본 스레드는 독립적인 실행을 계속합니다.
위 내용은 운동 이 확장 스레드를 사용해 보세요의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!