天天看點

java thread destory_Java Thread destroy()方法

Java Thread destroy()方法

java.lang.Thread.destroy() 方法用于銷毀線程組及其所有子組。線程組必須為空,表示該線程組中的所有線程此後都已停止。

1 文法

public void destroy()

2 參數

3 傳回值

4 示例

package com.yiidian;

public class Demo extends Thread

{

Demo(String threadname, ThreadGroup tg)

{

super(tg, threadname);

start();

}

public void run()

{

for (int i = 0; i < 2; i++)

{

try

{

Thread.sleep(10);

}

catch (InterruptedException ex) {

System.out.println("Exception encounterted");}

}

System.out.println(Thread.currentThread().getName() +

" finished executing");

}

public static void main(String arg[]) throws InterruptedException, SecurityException

{

// creating a ThreadGroup

ThreadGroup g1 = new ThreadGroup("Parent thread");

// creating a child ThreadGroup for parent ThreadGroup

ThreadGroup g2 = new ThreadGroup(g1, "child thread");

// creating a thread

Demo t1 = new Demo("Thread-1", g1);

// creating another thread

Demo t2 = new Demo("Thread-2", g1);

// block until other thread is finished

t1.join();

t2.join();

// destroying child thread

g2.destroy();

System.out.println(g2.getName() + " destroyed");

// destroying parent thread

g1.destroy();

System.out.println(g1.getName() + " destroyed");

}

}

輸出結果為:

Thread-1 finished executing

Thread-2 finished executing

child thread destroyed

Parent thread destroyed