摘要:
import org.junit.Test; public class testThread { @Test public void testThreads() throws Exception { Thread add = new AddThread(); Thread dec = new Dec 阅读全文
摘要:
旧API Date和Calendar 使用SimpleDateFormat格式化 新API LocalDateTime和ZonedDateTime 使用DateTimeFormatter格式化 Date date = new Date(); System.out.println(date); Sim 阅读全文