這篇文章主要介紹“Java中怎么使用線程組”的相關(guān)知識(shí),小編通過(guò)實(shí)際案例向大家展示操作過(guò)程,操作方法簡(jiǎn)單快捷,實(shí)用性強(qiáng),希望這篇“Java中怎么使用線程組”文章能幫助大家解決問(wèn)題。
讓客戶滿意是我們工作的目標(biāo),不斷超越客戶的期望值來(lái)自于我們對(duì)這個(gè)行業(yè)的熱愛(ài)。我們立志把好的技術(shù)通過(guò)有效、簡(jiǎn)單的方式提供給客戶,將通過(guò)不懈努力成為客戶在信息化領(lǐng)域值得信任、有價(jià)值的長(zhǎng)期合作伙伴,公司提供的服務(wù)項(xiàng)目有:主機(jī)域名、網(wǎng)絡(luò)空間、營(yíng)銷軟件、網(wǎng)站建設(shè)、??h網(wǎng)站維護(hù)、網(wǎng)站推廣。
Java中使用ThreadGroup類來(lái)代表線程組,表示一組線程的集合,可以對(duì)一批線程和線程組進(jìn)行管理??梢园丫€程歸屬到某一個(gè)線程組中,線程組中可以有線程對(duì)象,也可以有線程組,組中還可以有線程,這樣的組織結(jié)構(gòu)有點(diǎn)類似于樹(shù)的形式,如圖所示。
用戶創(chuàng)建的所有線程都屬于指定線程組,如果沒(méi)有顯式指定屬于哪個(gè)線程組,那么該線程就屬于默認(rèn)線程組(即main線程組)。默認(rèn)情況下,子線程和父線程處于同一個(gè)線程組。
此外,只有在創(chuàng)建線程時(shí)才能指定其所在的線程組,線程運(yùn)行中途不能改變它所屬的線程組,也就是說(shuō)線程一旦指定所在的線程組就不能改變。
1.安全
同一個(gè)線程組的線程是可以相互修改對(duì)方的數(shù)據(jù)的。但如果在不同的線程組中,那么就不能“跨線程組”修改數(shù)據(jù),可以從一定程度上保證數(shù)據(jù)安全。
2.批量管理
可以批量管理線程或線程組對(duì)象,有效地對(duì)線程或線程組對(duì)象進(jìn)行組織或控制。
三.線程組使用示例
1.線程關(guān)聯(lián)線程組:一級(jí)關(guān)聯(lián)
所謂一級(jí)關(guān)聯(lián)就是父對(duì)象中有子對(duì)象,但并不創(chuàng)建孫對(duì)象。比如創(chuàng)建一個(gè)線程組,然后將創(chuàng)建的線程歸屬到該組中,從而對(duì)這些線程進(jìn)行有效的管理。代碼示例如下:
public class ThreadGroupTest { public static void main(String[] args) { ThreadGroup rootThreadGroup = new ThreadGroup("root線程組"); Thread thread0 = new Thread(rootThreadGroup, new MRunnable(), "線程A"); Thread thread1 = new Thread(rootThreadGroup, new MRunnable(), "線程B"); thread0.start(); thread1.start(); } } class MRunnable implements Runnable { @Override public void run() { while (!Thread.currentThread().isInterrupted()) { System.out.println("線程名: " + Thread.currentThread().getName() + ", 所在線程組: " + Thread.currentThread().getThreadGroup().getName()) ; try { Thread.sleep(1000); } catch (InterruptedException e) { e.printStackTrace(); } } } } 復(fù)制代碼
執(zhí)行結(jié)果如下:
線程名: 線程A, 所在線程組: root線程組 線程名: 線程B, 所在線程組: root線程組 復(fù)制代碼
2.線程關(guān)聯(lián)線程組:多級(jí)關(guān)聯(lián)
所謂的多級(jí)關(guān)聯(lián)就是父對(duì)象中有子對(duì)象,子對(duì)象中再創(chuàng)建孫對(duì)象也就出現(xiàn)了子孫的效果了。比如使用下圖第二個(gè)構(gòu)造方法,將子線程組歸屬到某個(gè)線程組,再將創(chuàng)建的線程歸屬到子線程組,這樣就會(huì)有線程樹(shù)的效果了。
代碼示例如下:
public class ThreadGroupTest { public static void main(String[] args) { ThreadGroup rootThreadGroup = new ThreadGroup("root線程組"); Thread thread0 = new Thread(rootThreadGroup, new MRunnable(), "線程A"); Thread thread1 = new Thread(rootThreadGroup, new MRunnable(), "線程B"); thread0.start(); thread1.start(); ThreadGroup threadGroup1 = new ThreadGroup(rootThreadGroup, "子線程組"); Thread thread2 = new Thread(threadGroup1, new MRunnable(), "線程C"); Thread thread3 = new Thread(threadGroup1, new MRunnable(), "線程D"); thread2.start(); thread3.start(); } } class MRunnable implements Runnable { @Override public void run() { while (!Thread.currentThread().isInterrupted()) { System.out.println("線程名: " + Thread.currentThread().getName() + ", 所在線程組: " + Thread.currentThread().getThreadGroup().getName() + ", 父線程組: " + Thread.currentThread().getThreadGroup().getParent().getName()); try { Thread.sleep(1000); } catch (InterruptedException e) { e.printStackTrace(); } } } } 復(fù)制代碼
執(zhí)行結(jié)果如下:
線程名: 線程A, 所在線程組: root線程組, 父線程組: main 線程名: 線程B, 所在線程組: root線程組, 父線程組: main 線程名: 線程C, 所在線程組: 子線程組, 父線程組: root線程組 線程名: 線程D, 所在線程組: 子線程組, 父線程組: root線程組 復(fù)制代碼
3.批量管理組內(nèi)線程
使用線程組自然是要對(duì)線程進(jìn)行批量管理,比如可以批量中斷組內(nèi)線程,代碼示例如下:
public class ThreadGroupTest { public static void main(String[] args) { ThreadGroup rootThreadGroup = new ThreadGroup("root線程組"); Thread thread0 = new Thread(rootThreadGroup, new MRunnable(), "線程A"); Thread thread1 = new Thread(rootThreadGroup, new MRunnable(), "線程B"); thread0.start(); thread1.start(); ThreadGroup threadGroup1 = new ThreadGroup(rootThreadGroup, "子線程組"); Thread thread2 = new Thread(threadGroup1, new MRunnable(), "線程C"); Thread thread3 = new Thread(threadGroup1, new MRunnable(), "線程D"); thread2.start(); thread3.start(); rootThreadGroup.interrupt(); System.out.println("批量中斷組內(nèi)線程"); } } class MRunnable implements Runnable { @Override public void run() { while (!Thread.currentThread().isInterrupted()) { System.out.println("線程名: " + Thread.currentThread().getName() + ", 所在線程組: " + Thread.currentThread().getThreadGroup().getName() + ", 父線程組: " + Thread.currentThread().getThreadGroup().getParent().getName()); try { Thread.sleep(1000); } catch (InterruptedException e) { e.printStackTrace(); break; } } System.out.println(Thread.currentThread().getName() + "執(zhí)行結(jié)束"); } } 復(fù)制代碼
執(zhí)行結(jié)果如下:
線程名: 線程A, 所在線程組: root線程組, 父線程組: main 線程名: 線程B, 所在線程組: root線程組, 父線程組: main 線程名: 線程C, 所在線程組: 子線程組, 父線程組: root線程組 線程名: 線程D, 所在線程組: 子線程組, 父線程組: root線程組 批量中斷組內(nèi)線程 線程A執(zhí)行結(jié)束 線程B執(zhí)行結(jié)束 線程C執(zhí)行結(jié)束 線程D執(zhí)行結(jié)束 復(fù)制代碼
關(guān)于“Java中怎么使用線程組”的內(nèi)容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業(yè)相關(guān)的知識(shí),可以關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道,小編每天都會(huì)為大家更新不同的知識(shí)點(diǎn)。