이 기사는 Java 멀티스레딩 구현 방법을 요약한 것입니다(예제 포함). 도움이 필요한 친구들이 참고할 수 있기를 바랍니다.
1. 멀티 스레드 프로그래밍을 사용하는 경우
작업은 일반적인 상황에서 순차적으로 실행되지만 현재 작업에 유사한 프로세스 블록이 여러 개 있는 경우(예: for, while 문), 차단 없이 병렬로 실행되도록 이러한 코드 블록을 추출하는 것을 고려할 수 있습니다
2. 멀티 스레딩을 구현하는 여러 가지 방법
첫 번째는 스레드를 상속하는 것입니다. 클래스는 실행 메소드를 다시 작성하고, 다른 하나는 Runnable 인터페이스를 구현하고 실행 메소드를 다시 작성하는 것입니다
많은 경우 멀티 스레드를 시작하는 것은 동시 프로세스를 처리하는 것입니다. 비즈니스 요구 사항에 비해 요구 사항이 그리 높지 않으므로 대기열을 구현하여 비동기식으로 구현할 수도 있습니다.
3. 예
스레드 상속
/** * * @ClassName: ThreadByEx * @Description: TODO * @author Mr.jqCheng * @date 2018年9月26日 * */public class ThreadByEx extends Thread{ @Override public void run() { // TODO Auto-generated method stub System.out.println("我是继承线程"); } }
실행 가능 구현
/** * * @ClassName: ThreadByRunnable * @Description: TODO * @author Mr.jqCheng * @date 2018年9月26日 * */public class ThreadByRunnable implements Runnable{ /*public ThreadByRunnable() { this.run(); // TODO Auto-generated constructor stub }*/ public void run() { // TODO Auto-generated method stub System.out.println("我是实现进程"); } }
테스트:
/** * * @ClassName: Test * @Description: TODO * @author Mr.jqCheng * @date 2018年9月26日 * */public class Test { public static void main(String[] args) { // 继承Thread启动的方法 ThreadByEx t1 = new ThreadByEx(); t1.start();// 启动线程 // 实现Runnable启动线程的方法 ThreadByRunnable r = new ThreadByRunnable(); Thread t2 = new Thread(r); t2.start();// 启动线程 //new ThreadByRunnable(); } }
나는 구현 프로세스입니다
package com.orange.util; /** * * @ClassName: Test * @Description: TODO * @author Mr.jqCheng * @date 2018年9月26日 * */ public class Test { public static void main(String[] args) { Thread deamon2 = new Thread(new DaemonRunner2(), "otherRunner"); deamon2.start();// 启动线程 try { Thread.sleep(1000); } catch (InterruptedException e) { // TODO Auto-generated catch block e.printStackTrace(); } Thread deamon = new Thread(new DaemonRunner(), "DaemonRunner"); // 设置为守护线程 deamon.setDaemon(true); deamon.start();// 启动线程 } static class DaemonRunner implements Runnable { public void run() { // TODO Auto-generated method stub try { Thread.sleep(300); Thread t = Thread.currentThread(); System.out.println(t); } catch (Exception e) { e.printStackTrace(); } finally { System.out.println("进入守护线程,说明现在还有其他线程在执行"); } } } static class DaemonRunner2 implements Runnable { public void run() { // TODO Auto-generated method stub try { Thread.sleep(1500); System.out.println("我是其他线程"); } catch (Exception e) { e.printStackTrace(); } } } }
Enter 지금 실행 중인 다른 스레드가 있음을 나타내는 데몬 스레드
나는 다른 스레드입니다
그런데 데몬 스레드의 300ms를 500ms로 바꾸면 어떻게 될까요? 결국 두 가지 상황이 발생했습니다. 1. 나는 또 다른 스레드 2.Thread[DaemonRunner,5 ,main]
데몬 스레드를 입력한다는 것은 현재 실행 중인 다른 스레드가 있다는 의미입니다
나는 다른 스레드입니다
위 내용은 Java 다중 스레드 프로그래밍 방법 요약(예제 포함)의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!