> Java > java지도 시간 > 본문

다중 스레드를 사용한 Cap 프로그래밍

Mary-Kate Olsen
풀어 주다: 2024-11-22 05:38:17
원래의
902명이 탐색했습니다.

주요 스킬 및 컨셉
• 다중 스레드 생성의 기본 사항 이해
• Thread 클래스와 Runnable
인터페이스를 알아보세요. • 스레드 만들기
• 여러 스레드 생성
• 스레드 종료 시점 결정
• 스레드 우선순위 사용
• 스레드 동기화 이해
• 동기화된 방법 사용
• 동기화된 블록 사용
• 스레드 간 통신 촉진
• 스레드 일시 중지, 재개 및 중지

스레드: 프로그램 내에서 독립적인 실행 경로입니다.
멀티태스킹: 프로세스(여러 프로그램) 또는 스레드(동일한 프로그램의 여러 작업)를 기반으로 할 수 있습니다.
장점:
유휴시간 활용 시 효율성이 높아집니다.
멀티코어/멀티프로세서 시스템을 더욱 효과적으로 활용하세요.

스레드 생성 및 관리

클래스 및 인터페이스:
스레드: 스레드를 캡슐화하는 클래스입니다.
실행 가능: 사용자 정의 스레드를 정의하는 데 사용되는 인터페이스

공통 스레드 클래스 방법:

  • getName(): 스레드 이름을 반환합니다.
  • getPriority(): 우선순위를 반환합니다.
  • isAlive(): 스레드가 아직 실행 중인지 확인합니다.
  • join(): 스레드가 완료될 때까지 기다립니다.
  • run(): 스레드의 진입점을 정의합니다.
  • sleep(long ms): 일정 시간 동안 스레드를 일시 중지합니다.
  • start(): 스레드 실행을 시작합니다.

스레드 만들기:

  • 실행 가능 구현:
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 Programação com várias threads

위 내용은 다중 스레드를 사용한 Cap 프로그래밍의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

원천:dev.to
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
저자별 최신 기사
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿