真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

如何進行Java多線程循環(huán)相關的代碼介紹

這篇文章給大家介紹如何進行Java多線程循環(huán)相關的代碼介紹,內(nèi)容非常詳細,感興趣的小伙伴們可以參考借鑒,希望對大家能有所幫助。

洪澤網(wǎng)站建設公司創(chuàng)新互聯(lián),洪澤網(wǎng)站設計制作,有大型網(wǎng)站制作公司豐富經(jīng)驗。已為洪澤近千家提供企業(yè)網(wǎng)站建設服務。企業(yè)網(wǎng)站搭建\成都外貿(mào)網(wǎng)站建設要多少錢,請找那個售后服務好的洪澤做網(wǎng)站的公司定做!

Java多線程循環(huán)需要我們不斷的學習,有很多的問題一直是我們相互關心的。下面我們就來看看如何才能更好的使用這門編程語言。當每個迭代彼此獨立,并且完成循環(huán)體中每個迭代的工作,意義都足夠重大,足以彌補管理一個新任務的開銷時,這個順序循環(huán)是適合并行化的。

  1. public voidParallelRecursive(final Executorexec,
    List>nodes,Collection results){  

  2. for(Node n:nodes){  

  3. exec.execute(new Runnable(){  

  4. public void run(){  

  5. results.add(n.compute());  

  6. }  

  7. });  

  8. parallelRecursive(exec,n.getChildren(),results);  

  9. }  

  10. }  

  11. publicCollectiongetParallelResults(List>nodes)  

  12. throws InterruptedException{  

  13. ExecutorService exec=Executors.newCachedThreadPool();  

  14. Queue resultQueue=newConcurrentLinkedQueue();  

  15. parallelRecursive(exec,nodes,resultQueue);  

  16. exec.shutdown();  

  17. exec.awaitTermination(Long.MAX_VALUE,TimeUnit.SECONDS);  

  18. return reslutQueue;  

但是以上程序不能處理不存在任何方案的情況,而下列程序可以解決這個問題

  1. public class PuzzleSolverextendsConcurrent
    PuzzleSolver{  

  2. ...  

  3. privatefinal AtomicInteger taskCount=new AtomicInteger(0);  

  4. protectedRunnable newTask(P p,M m,Noden){  

  5. return new CountingSolverTask(p,m,n);  

  6. }  

  7. classCountingSolverTask extends SolverTask{  

  8. CountingSolverTask(P pos,Mmove,Node prev){  

  9. super(pos,move,prev);  

  10. taskCount.incrementAndGet();  

  11. }  

  12. publicvoid run(){  

  13. try{  

  14. super.run();  

  15. }  

  16. finally{  

  17. if (taskCount.decrementAndGet()==0)  

  18. solution.setValue(null);  

  19. }  

  20. }  

  21. }  

關于如何進行Java多線程循環(huán)相關的代碼介紹就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。


網(wǎng)站標題:如何進行Java多線程循環(huán)相關的代碼介紹
地址分享:http://weahome.cn/article/gcdpjs.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部