주요 스킬 및 컨셉
• 다중 스레드 생성의 기본 사항 이해
• Thread 클래스와 Runnable
인터페이스를 알아보세요.
• 스레드 만들기
• 여러 스레드 생성
• 스레드 종료 시점 결정
• 스레드 우선순위 사용
• 스레드 동기화 이해
• 동기화된 방법 사용
• 동기화된 블록 사용
• 스레드 간 통신 촉진
• 스레드 일시 중지, 재개 및 중지
스레드: 프로그램 내에서 독립적인 실행 경로입니다.
멀티태스킹: 프로세스(여러 프로그램) 또는 스레드(동일한 프로그램의 여러 작업)를 기반으로 할 수 있습니다.
장점:
유휴시간 활용 시 효율성이 높아집니다.
멀티코어/멀티프로세서 시스템을 더욱 효과적으로 활용하세요.
스레드 생성 및 관리
클래스 및 인터페이스:
스레드: 스레드를 캡슐화하는 클래스입니다.
실행 가능: 사용자 정의 스레드를 정의하는 데 사용되는 인터페이스
공통 스레드 클래스 방법:
스레드 만들기:
class MyThread implements Runnable { String threadName; MyThread(String name) { threadName = name; } public void run() { System.out.println(threadName + " starting."); try { for (int i = 0; i < 10; i++) { Thread.sleep(400); System.out.println("In " + threadName + ", count is " + i); } } catch (InterruptedException e) { System.out.println(threadName + " interrupted."); } System.out.println(threadName + " terminating."); } } public class UseThreads { public static void main(String[] args) { System.out.println("Main thread starting."); MyThread myThread = new MyThread("Child #1"); Thread thread = new Thread(myThread); thread.start(); for (int i = 0; i < 50; i++) { System.out.print("."); try { Thread.sleep(100); } catch (InterruptedException e) { System.out.println("Main thread interrupted."); } } System.out.println("Main thread ending."); } }
예상 출력:
Main thread starting. . Child #1 starting. .. In Child #1, count is 0 ... In Child #1, count is 1 ... Main thread ending.
스레드 클래스 확장:
class MyThread extends Thread { MyThread(String name) { super(name); } public void run() { System.out.println(getName() + " starting."); try { for (int i = 0; i < 10; i++) { Thread.sleep(400); System.out.println("In " + getName() + ", count is " + i); } } catch (InterruptedException e) { System.out.println(getName() + " interrupted."); } System.out.println(getName() + " terminating."); } } public class UseThreads { public static void main(String[] args) { System.out.println("Main thread starting."); MyThread thread = new MyThread("Child #1"); thread.start(); for (int i = 0; i < 50; i++) { System.out.print("."); try { Thread.sleep(100); } catch (InterruptedException e) { System.out.println("Main thread interrupted."); } } System.out.println("Main thread ending."); } }
참고: sleep() 메서드는 호출된 스레드의 실행을 일시 중지합니다.
지정된 밀리초 동안
책 테이블
위 내용은 다중 스레드를 사용한 Cap 프로그래밍의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!