XOM:Builder.build() 线程安全吗?

发布于 2024-12-02 19:11:59 字数 53 浏览 2 评论 0原文

Builder.build() 线程安全吗?我在 XOM Javadoc 中找不到任何信息。

Is Builder.build() thread safe? I couldn't find any info in XOM Javadoc.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

旧情别恋 2024-12-09 19:11:59

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文