25: 다중 스레드 두 가지 실현 방식의 관계와 스레드의 생명 주기

1995 단어 라이프 사이클
하나.
생성된 루틴 이름, 루틴의sleep 방법
public class TwoThreadsTest {
	public static void main(String[] args) {
		new SimpleThread("hello").start();// hello      Thread      
		new SimpleThread("world").start();//       ,          Thread-n
	}
}

class SimpleThread extends Thread {
	public SimpleThread(String name) {
		// super(name);//     (Thread)     
		this.setName(name);//       ,      name   。
	}

	@Override
	public void run() {
		for (int i = 0; i < 10; i++) {
			System.out.println(i + " " + this.getName());//          
			try {
				sleep((long) (Math.random() * 5000));//    (0-5000  )
			} catch (InterruptedException e) {
				e.printStackTrace();
			}
			System.out.println("DONE!" + this.getName());
		}
	}
}

둘.
스레드가 활성 상태인지 판단(isAlive()
스레드가 활성 상태인지 테스트합니다.만약 라인이 이미 시작되었고 종료되지 않았다면, 활동 상태입니다.
//              
public class AliveTest {
	public static void main(String[] args) {

		Thread thread = new Thread(new ThreadMe());
		
		//      
		System.out.println(thread.isAlive());//             。
		
		//    
		thread.start();
		for(int i=0;i<100;i++){
			System.out.println(thread.isAlive());
		}
	}
}

class ThreadMe implements Runnable {

	public void run() {
		System.out.println("hello world");
	}

}

셋.
스레드의 Join () 방법: 스레드가 종료될 때까지 기다렸다가 자신의 스레드를 실행합니다. (끊긴 위치부터 아래로 실행)
//         ,      ......
public class JoinTest {
	public static void main(String[] args) throws InterruptedException {
		My my=new My();
		my.start();
		System.out.println("hello");//main     ,       Join  ,   ...
		my.join();//       。
		System.out.println("hello world");
	}
}

class My extends Thread{
	@Override
	public void run(){
		for(int i=0;i<10;i++){
			try {
				System.out.println("my thread"+i);
				Thread.sleep(1000);
			} catch (InterruptedException e) {
				e.printStackTrace();
			}
		}
	}
}

좋은 웹페이지 즐겨찾기