XOM:Builder.build() 线程安全吗?
Builder.build() 线程安全吗?我在 XOM Javadoc 中找不到任何信息。
Is Builder.build() thread safe? I couldn't find any info in XOM Javadoc.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Builder
没有告诉我们其中一个构建器方法是线程安全的,我们没有理由假设它:这些方法不同步(查看代码)并且该类使用第一个可用的方法解析器并委托工作。因此,我们应该避免在不同线程之间共享一个
nu.xom.Builder
实例。Builder
doesn't tell us that one of the builder methods is thread-safe and we have no reason to assume it: the methods are not synchronized (look at the code) and the class uses the first available parser and delegates the work.So we should avoid sharing one instance of
nu.xom.Builder
between different threads.