溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

Java中怎么固定線程池大小

發(fā)布時間:2021-08-13 11:47:35 來源:億速云 閱讀:199 作者:Leah 欄目:編程語言

今天就跟大家聊聊有關(guān)Java中怎么固定線程池大小,可能很多人都不太了解,為了讓大家更加了解,小編給大家總結(jié)了以下內(nèi)容,希望大家根據(jù)這篇文章可以有所收獲。

固定大小的Java線程池

Java線程池代碼

  1. import java.util.concurrent.Executors;   

  2. import java.util.concurrent.ExecutorService;   

  3. /**   

  4. * Java線程:線程池-   

  5. *   

  6. * @author Administrator 2009-11-4 23:30:44   

  7. */   

  8. public class Test {   

  9. public static void main(String[] args) {   

  10. //創(chuàng)建一個可重用固定線程數(shù)的線程池   

  11. ExecutorService pool = Executors.newFixedThreadPool(2);   

  12. //創(chuàng)建實(shí)現(xiàn)了Runnable接口對象,Thread對象當(dāng)然也實(shí)現(xiàn)了Runnable接口   

  13. Thread t1 = new MyThread();   

  14. Thread t2 = new MyThread();   

  15. Thread t3 = new MyThread();   

  16. Thread t4 = new MyThread();   

  17. Thread t5 = new MyThread();   

  18. //將線程放入池中進(jìn)行執(zhí)行   

  19. pool.execute(t1);   

  20. pool.execute(t2);   

  21. pool.execute(t3);   

  22. pool.execute(t4);   

  23. pool.execute(t5);   

  24. //關(guān)閉線程池   

  25. pool.shutdown();   

  26. }   

  27. }   

  28. class MyThread extends Thread{   

  29. @Override   

  30. public void run() {   

  31. System.out.println(Thread.currentThread().getName()+
    "正在執(zhí)行。。。");   

  32. }   

  33. }   

  34. import java.util.concurrent.Executors;   

  35. import java.util.concurrent.ExecutorService;   

  36. /**   

  37. * Java線程:線程池-   

  38. *   

  39. * @author Administrator 2009-11-4 23:30:44   

  40. */   

  41. public class Test {   

  42. public static void main(String[] args) {   

  43. //創(chuàng)建一個可重用固定線程數(shù)的線程池   

  44. ExecutorService pool = Executors.newFixedThreadPool(2);   

  45. //創(chuàng)建實(shí)現(xiàn)了Runnable接口對象,Thread對象當(dāng)然也實(shí)現(xiàn)了Runnable接口   

  46. Thread t1 = new MyThread();   

  47. Thread t2 = new MyThread();   

  48. Thread t3 = new MyThread();   

  49. Thread t4 = new MyThread();   

  50. Thread t5 = new MyThread();   

  51. //將線程放入池中進(jìn)行執(zhí)行   

  52. pool.execute(t1);   

  53. pool.execute(t2);   

  54. pool.execute(t3);   

  55. pool.execute(t4);   

  56. pool.execute(t5);   

  57. //關(guān)閉線程池   

  58. pool.shutdown();   

  59. }   

  60. }   

  61. class MyThread extends Thread{   

  62. @Override   

  63. public void run() {   

  64. System.out.println(Thread.currentThread().getName()+
    "正在執(zhí)行。。。");   

  65. }  

Java線程池代碼

pool-1-thread-1正在執(zhí)行。。。   pool-1-thread-1正在執(zhí)行。。。   pool-1-thread-1正在執(zhí)行。。。   pool-1-thread-1正在執(zhí)行。。。   pool-1-thread-2正在執(zhí)行。。。   Process finished with exit code 0

看完上述內(nèi)容,你們對Java中怎么固定線程池大小有進(jìn)一步的了解嗎?如果還想了解更多知識或者相關(guān)內(nèi)容,請關(guān)注億速云行業(yè)資訊頻道,感謝大家的支持。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI