CyclicBarrier.await() 函数生成空指针异常的原因可能是什么
我正在使用 CyclicBarrier 类 wait() 来同步同时处理不同文档的不同线程。然而,这个函数似乎在大多数文档输入中返回空指针异常。有人可以帮助我避免这种异常吗?
I am using the CyclicBarrier class , await() to synchronize the different threads which process different documents simultaneously. However this function seems to return a Null pointer exception in most inputs of documents. Could someone help me out to avoid this exception?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您没有使用带有超时的版本并将
null
作为时间单位,我认为此方法没有理由抛出 NullPointerException。您确定 NullPointerException 来自此方法吗?查看堆栈跟踪(或者将其粘贴到问题中,如果您无法解释它)。
I see no reason this method should ever throw a NullPointerException, if you didn't use the version with a timeout and gave
null
as a time unit.Are you sure the NullPointerException comes from this method? Have a look at the stack trace (or paste it into the question, if you can't interpret it).