当前位置:  开发笔记 > 编程语言 > 正文

java中的简单线程问题

如何解决《java中的简单线程问题》经验,为你挑选了1个好方法。

除了我释放爬虫时的工作:

public void setCrawlerFree(WebCrawler w)
    {
        synchronized(myFreeCrawlers)
        {
            synchronized(numToGo)
            {
                myFreeCrawlers.add(w);
                myFreeCrawlers.notifyAll();
                numToGo--;
                numToGo.notify();
            }
        }
    }

爬虫完成后,我可以将其添加回列表中.我还想从我仍然需要做的事情中减去1.我有一个主线程等待,直到numToGo为0.我在numToGo.notify()上得到一个IllegalMonitorStateException,但由于它在同步块内,这是不是意味着我拥有它?



1> Eugene Kules..:

考虑将其重写为ExecutorService.

ThreadPoolExecutor executor = new ThreadPoolExecutor(corePoolSize, 
     maximumPoolSize, keepAliveTime, timeUnit, 
     new LinkedBlockingQueue());
executor.submit(new Callable<...>() { ... });

它将大大简化您的代码并消除线程同步问题.

推荐阅读
凹凸曼00威威_694
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有