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();
}
}
}
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Vue의 라이프 사이클 beforeDestory가 트리거되지 않는 문제 해결유용한 경험을 공유합니다. router-view에keep-alive를 추가하여 구성 요소 캐시를 만들었기 때문에beforeDestory와destoryed를 터치하지 않습니다 끝! 보충 지식: vuex actions가...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.