Synchronization
Date formats are not synchronized. It is recommended to create separate format instances for each thread. If multiple threads access a format concurrently, it must be synchronized externally
在 SimpleDateFormat 类的 JavaDoc 中提到了上述行。
这是否意味着我们不应该将 SimpleDateFormat 对象创建为静态对象。
如果我们将它创建为静态的,那么无论我们在哪里使用这个对象,我们都需要将它保存在 Synchronized Block 中。