Is Joda-Time DateTimeFormatter class thread safe?

后端 未结 3 1973
青春惊慌失措
青春惊慌失措 2020-12-14 05:12

Is the Joda-Time DateTimeFormatter class thread safe? Once I get an instance from DateTimeFormat.forPattern, can its various parse methods be calle

相关标签:
3条回答
  • 2020-12-14 05:52

    Found this question on top of google's answers when checking for Java's java.time.format.DateTimeFormatter thread safety

    Java's own DateTimeFormatter is also thread-safe, as the documentation states:

    This class is immutable and thread-safe

    0 讨论(0)
  • 2020-12-14 06:01

    A quick look at the code shows there isn't any mutable shared state in DateTimeFormatter, which would make it thread safe.

    0 讨论(0)
  • 2020-12-14 06:19

    Yes, it is:

    DateTimeFormat is thread-safe and immutable, and the formatters it returns are as well.

    and so is the Java 8 version

    Implementation Requirements: This class is immutable and thread-safe.

    0 讨论(0)
提交回复
热议问题